After reading this:
http://msdn.microsoft.com/en-us/data/jj680699.aspx
about Code-based Configuration in EF6, I wonder if
System.Data.SQLite.EF6.SQLiteProviderServices
needs to be public (instead of internal), so that people could do something
like this:
public class MyConfiguration : DbConfiguration
{
public MyConfiguration()
{
this.SetProviderServices("System.Data.SQLite",
System.Data.SQLite.EF6.SQLiteProviderServices.Instance);
}
}
--
E
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users