EntityQueryRootExpression 构造函数

定义

重载

EntityQueryRootExpression(IEntityType)

创建没有任何查询提供程序的 EntityQueryRootExpression 类的新实例。

EntityQueryRootExpression(IAsyncQueryProvider, IEntityType)

使用关联的查询提供程序创建 类的新实例 EntityQueryRootExpression

EntityQueryRootExpression(IEntityType)

创建没有任何查询提供程序的 EntityQueryRootExpression 类的新实例。

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)

参数

entityType
IEntityType

此查询根表示的实体类型。

适用于

EntityQueryRootExpression(IAsyncQueryProvider, IEntityType)

使用关联的查询提供程序创建 类的新实例 EntityQueryRootExpression

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)

参数

asyncQueryProvider
IAsyncQueryProvider

与此查询根关联的查询提供程序。

entityType
IEntityType

此查询根表示的实体类型。

适用于