-
-
Notifications
You must be signed in to change notification settings - Fork 122
Closed
Description
The following code,
protected override void OnModelCreating (DbModelBuilder modelBuilder)
{
modelBuilder.Entity () ToTable ("Base.DictionaryTimestamp");
var sqliteConnectionInitializer = new SqliteCreateDatabaseIfNotExists (modelBuilder);
Database.SetInitializer (sqliteConnectionInitializer);
}
Table name and the entity name mapping is not the same, but still with the name of the table created entity name, is still a "DictionaryTimestamp", rather than "Base.DictionaryTimestamp"
Is there a solution?
Thank you very much!