12345678910111213 |
- using System.Data.Entity;
- namespace Assets.Logging
- {
- public class StreetLightDbConfiguration : DbConfiguration
- {
- public StreetLightDbConfiguration()
- {
- //System.InvalidOperationException: The requested .Net Framework Data Provider's implementation does not have an Instance field of a System.Data.Common.DbProviderFactory derived type
- //this.SetProviderFactory("", )
- }
- }
- }
|