123456789101112131415161718 |
- 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<Poco.DetectionFrame> DetectionFrames { get; set; }
- }
- }
|