Interface IEdmResolver
Defines an interface that can be used by the DataContext to resolve the EDM models at runtime.
Namespace: Cireson.Core.Interfaces.DataAccess
Assembly: Cireson.Core.Interfaces.dll
Syntax
public interface IEdmResolver
Remarks
Admin, 8/24/2017.
Properties
View SourceFilter
Filter can be used to exclude certain types from the model.
Declaration
Expression<Func<Type, bool>> Filter { get; set; }
Property Value
Type | Description |
---|---|
Expression<Func<Type, System.Boolean>> | The filter. |
Methods
View SourceBuildModels(DbModelBuilder)
Builds the edm using the model builder framework.
Declaration
void BuildModels(DbModelBuilder modelBuilder)
Parameters
Type | Name | Description |
---|---|---|
DbModelBuilder | modelBuilder | . |