Compartir a través de


QueryableMethodTranslatingExpressionVisitor.CreateShapedQueryExpression Método

Definición

Sobrecargas

CreateShapedQueryExpression(IEntityType)

Crea un ShapedQueryExpression para el tipo de entidad especificado.

CreateShapedQueryExpression(Type)
Obsoletos.

Crea un ShapedQueryExpression para el tipo especificado buscando su tipo de entidad en el modelo.

CreateShapedQueryExpression(IEntityType)

Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs

Crea un ShapedQueryExpression para el tipo de entidad especificado.

protected abstract Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression CreateShapedQueryExpression (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
protected abstract Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression? CreateShapedQueryExpression (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
abstract member CreateShapedQueryExpression : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression
Protected MustOverride Function CreateShapedQueryExpression (entityType As IEntityType) As ShapedQueryExpression

Parámetros

entityType
IEntityType

El tipo de entidad.

Devoluciones

Expresión de consulta con forma para el tipo de entidad especificado.

Se aplica a

CreateShapedQueryExpression(Type)

Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs
Source:
QueryableMethodTranslatingExpressionVisitor.cs

Precaución

Use overload which takes IEntityType.

Crea un ShapedQueryExpression para el tipo especificado buscando su tipo de entidad en el modelo.

protected abstract Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression CreateShapedQueryExpression (Type elementType);
[System.Obsolete("Use overload which takes IEntityType.")]
protected abstract Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression CreateShapedQueryExpression (Type elementType);
abstract member CreateShapedQueryExpression : Type -> Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression
[<System.Obsolete("Use overload which takes IEntityType.")>]
abstract member CreateShapedQueryExpression : Type -> Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression
Protected MustOverride Function CreateShapedQueryExpression (elementType As Type) As ShapedQueryExpression

Parámetros

elementType
Type

Tipo clr del tipo de entidad que se va a buscar.

Devoluciones

Expresión de consulta con forma para el tipo clr especificado.

Atributos

Se aplica a