DbModelBuilder Constructor
Initializes a new instance of the DbModelBuilder class.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | DbModelBuilder() | Initializes a new instance of the DbModelBuilder class. The process of discovering the initial model will use the set of conventions included in the most recent version of the Entity Framework installed on your machine. |
![]() | DbModelBuilder(DbModelBuilderVersion) | Initializes a new instance of the DbModelBuilder class that will use a specific set of conventions to discover the initial model. |
DbModelBuilder Constructor ()
Initializes a new instance of the DbModelBuilder class. The process of discovering the initial model will use the set of conventions included in the most recent version of the Entity Framework installed on your machine.
Upgrading to newer versions of the Entity Framework may cause breaking changes in your application because new conventions may cause the initial model to be configured differently. There is an alternate constructor that allows a specific version of conventions to be specified.
DbModelBuilder Constructor (DbModelBuilderVersion)
Initializes a new instance of the DbModelBuilder class that will use a specific set of conventions to discover the initial model.
Parameters
- modelBuilderVersion
-
Type:
System.Data.Entity.DbModelBuilderVersion
The version of conventions to be used.