SqlServerModelSource
SqlServerModelSource
Class
Definition
This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.
public class SqlServerModelSource : RelationalModelSource, IModelSource
Public Class SqlServerModelSource
Inherits RelationalModelSource
Implements IModelSource
- Inheritance
-
System.ObjectSystem.ObjectSqlServerModelSourceSqlServerModelSource
- Implements
Constructors
SqlServerModelSource(IDbSetFinder, ICoreConventionSetBuilder, IModelCustomizer, IModelCacheKeyFactory) SqlServerModelSource(IDbSetFinder, ICoreConventionSetBuilder, IModelCustomizer, IModelCacheKeyFactory) |
This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. |
Methods
CreateConventionSet(IConventionSetBuilder) CreateConventionSet(IConventionSetBuilder) |
Creates the convention set to be used for the model. Uses the CoreConventionSetBuilder if conventionSetBuilder is null. (Inherited from ModelSource) |
CreateModel(DbContext, IConventionSetBuilder, IModelValidator) CreateModel(DbContext, IConventionSetBuilder, IModelValidator) |
Creates the model. This method is called when the model was not found in the cache. (Inherited from ModelSource) |
System.Object.Equals(System.Object) System.Object.Equals(System.Object) | Inherited from System.Object |
System.Object.Equals(System.Object, System.Object) System.Object.Equals(System.Object, System.Object) | Inherited from System.Object |
FindSets(ModelBuilder, DbContext) FindSets(ModelBuilder, DbContext) |
This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases. (Inherited from RelationalModelSource) |
System.Object.GetHashCode() System.Object.GetHashCode() | Inherited from System.Object |
GetModel(DbContext, IConventionSetBuilder, IModelValidator) GetModel(DbContext, IConventionSetBuilder, IModelValidator) |
Returns the model from the cache, or creates a model if it is not present in the cache. (Inherited from ModelSource) |
System.Object.GetType() System.Object.GetType() | Inherited from System.Object |
System.Object.MemberwiseClone() System.Object.MemberwiseClone() | Inherited from System.Object |
System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ReferenceEquals(System.Object, System.Object) | Inherited from System.Object |
System.Object.ToString() System.Object.ToString() | Inherited from System.Object |
Properties
CoreConventionSetBuilder CoreConventionSetBuilder |
Gets the ICoreConventionSetBuilder that will build the conventions to be used to build the model. (Inherited from ModelSource) |
ModelCacheKeyFactory ModelCacheKeyFactory |
Gets the IModelCacheKeyFactory that will create keys used to store and lookup models the model cache. (Inherited from ModelSource) |
ModelCustomizer ModelCustomizer |
Gets the IModelCustomizer that will perform additional configuration of the model in addition to what is discovered by convention. (Inherited from ModelSource) |
SetFinder SetFinder |
Gets the IDbSetFinder that will locate the DbSet<TEntity> properties on the derived context. (Inherited from ModelSource) |