using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assets.Logging { [DbConfigurationType(typeof(StreetLightDbConfiguration))] internal class StreetLightContext : DbContext { public StreetLightContext() : base("Server=(LocalDb)\\MSSQLLocalDB;Database=myDataBase;Trusted_Connection=True;") { } public DbSet DetectionFrames { get; set; } } }