mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
23 lines
413 B
C#
23 lines
413 B
C#
using System.Data.Common;
|
|
using System.Data.Entity;
|
|
using System.Linq;
|
|
using Ninject;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public class LogDbContext : DbContext
|
|
{
|
|
[Inject]
|
|
public LogDbContext(DbConnection connection)
|
|
: base(connection, false)
|
|
{
|
|
}
|
|
|
|
public LogDbContext()
|
|
{
|
|
}
|
|
|
|
public DbSet<Log> Logs { get; set; }
|
|
}
|
|
}
|