EntityQueryRootExpression 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
此查询根表示的实体类型。