StreetLightDbConfiguration.cs 447 B

12345678910111213
  1. using System.Data.Entity;
  2. namespace Assets.Logging
  3. {
  4. public class StreetLightDbConfiguration : DbConfiguration
  5. {
  6. public StreetLightDbConfiguration()
  7. {
  8. //System.InvalidOperationException: The requested .Net Framework Data Provider's implementation does not have an Instance field of a System.Data.Common.DbProviderFactory derived type
  9. //this.SetProviderFactory("", )
  10. }
  11. }
  12. }