I want to fire OnModelCreating every new DataContext(new Entity())
...
But when i create a connection of a table , it works. When create a connection for another table, OnModelCreating doesnt work again, so because i got error,
the entity type <tableName> is not part of the model for the current context.
public class DataContext : DbContext
{
private BaseEntity _entity;
public DataContext(BaseEntity entity)
{
Database.Connection.ConnectionString = Parameters.ConnectionString;
_entity = entity;
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
_entity.Map(modelBuilder); // this is dynamic fluent api here
}
}
The manual has got you covered!
Although if it's possible you might want to explore a generic
DbContext
likepublic class DataContext<TBaseEntity> : DbContext
. This will lead you to an architecture where you have oneDataContext
type perTBaseEntity
type.