EntityQueryRootExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EntityQueryRootExpression(IEntityType) |
Creates a new instance of the EntityQueryRootExpression class without any query provider. |
EntityQueryRootExpression(IAsyncQueryProvider, IEntityType) |
Creates a new instance of the EntityQueryRootExpression class with associated query provider. |
EntityQueryRootExpression(IEntityType)
Creates a new instance of the EntityQueryRootExpression class without any query provider.
public EntityQueryRootExpression (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
new Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression
Public Sub New (entityType As IEntityType)
Parameters
- entityType
- IEntityType
The entity type this query root represents.
Applies to
EntityQueryRootExpression(IAsyncQueryProvider, IEntityType)
Creates a new instance of the EntityQueryRootExpression class with associated query provider.
public EntityQueryRootExpression (Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider asyncQueryProvider, Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
new Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression : Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider * Microsoft.EntityFrameworkCore.Metadata.IEntityType -> Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression
Public Sub New (asyncQueryProvider As IAsyncQueryProvider, entityType As IEntityType)
Parameters
- asyncQueryProvider
- IAsyncQueryProvider
The query provider associated with this query root.
- entityType
- IEntityType
The entity type this query root represents.
Applies to
Entity Framework