DefaultQuerySqlGenerator.GenerateList Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>) |
Executa a geração em uma lista de itens visitando cada item. |
GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>) |
Executa a geração em uma lista de itens visitando cada item. |
GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>) |
Execute a geração em uma lista de itens usando uma ação de geração fornecida e uma ação de junção opcional. |
GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>) |
Execute a geração em uma lista de itens usando uma ação de geração fornecida e uma ação de junção opcional. |
GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>)
- Origem:
- DefaultQuerySqlGenerator.cs
- Origem:
- DefaultQuerySqlGenerator.cs
Executa a geração em uma lista de itens visitando cada item.
protected virtual void GenerateList (System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> items, Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> joinAction = default);
protected virtual void GenerateList (System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> items, Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> joinAction);
abstract member GenerateList : System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> -> unit
override this.GenerateList : System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> -> unit
Protected Overridable Sub GenerateList (items As IReadOnlyList(Of Expression), Optional joinAction As Action(Of IRelationalCommandBuilder) = Nothing)
Protected Overridable Sub GenerateList (items As IReadOnlyList(Of Expression), joinAction As Action(Of IRelationalCommandBuilder))
Parâmetros
- items
- IReadOnlyList<Expression>
A lista de itens.
- joinAction
- Action<IRelationalCommandBuilder>
Uma ação de junção opcional.
Aplica-se a
GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>)
- Origem:
- DefaultQuerySqlGenerator.cs
Executa a geração em uma lista de itens visitando cada item.
protected virtual void GenerateList (System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> items, Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> joinAction = default, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> typeMappings = default);
abstract member GenerateList : System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> -> unit
override this.GenerateList : System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> -> unit
Protected Overridable Sub GenerateList (items As IReadOnlyList(Of Expression), Optional joinAction As Action(Of IRelationalCommandBuilder) = Nothing, Optional typeMappings As IReadOnlyList(Of RelationalTypeMapping) = Nothing)
Parâmetros
- items
- IReadOnlyList<Expression>
A lista de itens.
- joinAction
- Action<IRelationalCommandBuilder>
Uma ação de junção opcional.
- typeMappings
- IReadOnlyList<RelationalTypeMapping>
Mapeamentos de tipo de opção para cada item.
Aplica-se a
GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>)
- Origem:
- DefaultQuerySqlGenerator.cs
Execute a geração em uma lista de itens usando uma ação de geração fornecida e uma ação de junção opcional.
protected virtual void GenerateList<T> (System.Collections.Generic.IReadOnlyList<T> items, Action<T> generationAction, Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> joinAction = default, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> typeMappings = default);
abstract member GenerateList : System.Collections.Generic.IReadOnlyList<'T> * Action<'T> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> -> unit
override this.GenerateList : System.Collections.Generic.IReadOnlyList<'T> * Action<'T> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> -> unit
Protected Overridable Sub GenerateList(Of T) (items As IReadOnlyList(Of T), generationAction As Action(Of T), Optional joinAction As Action(Of IRelationalCommandBuilder) = Nothing, Optional typeMappings As IReadOnlyList(Of RelationalTypeMapping) = Nothing)
Parâmetros de tipo
- T
O tipo do item.
Parâmetros
- items
- IReadOnlyList<T>
A lista de itens.
- generationAction
- Action<T>
A ação de geração.
- joinAction
- Action<IRelationalCommandBuilder>
Uma ação de junção opcional.
- typeMappings
- IReadOnlyList<RelationalTypeMapping>
Mapeamentos de tipo de opção para cada item.
Aplica-se a
GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>)
- Origem:
- DefaultQuerySqlGenerator.cs
- Origem:
- DefaultQuerySqlGenerator.cs
Execute a geração em uma lista de itens usando uma ação de geração fornecida e uma ação de junção opcional.
protected virtual void GenerateList<T> (System.Collections.Generic.IReadOnlyList<T> items, Action<T> generationAction, Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> joinAction = default);
protected virtual void GenerateList<T> (System.Collections.Generic.IReadOnlyList<T> items, Action<T> generationAction, Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> joinAction);
abstract member GenerateList : System.Collections.Generic.IReadOnlyList<'T> * Action<'T> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> -> unit
override this.GenerateList : System.Collections.Generic.IReadOnlyList<'T> * Action<'T> * Action<Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder> -> unit
Protected Overridable Sub GenerateList(Of T) (items As IReadOnlyList(Of T), generationAction As Action(Of T), Optional joinAction As Action(Of IRelationalCommandBuilder) = Nothing)
Protected Overridable Sub GenerateList(Of T) (items As IReadOnlyList(Of T), generationAction As Action(Of T), joinAction As Action(Of IRelationalCommandBuilder))
Parâmetros de tipo
- T
O tipo do item.
Parâmetros
- items
- IReadOnlyList<T>
A lista de itens.
- generationAction
- Action<T>
A ação de geração.
- joinAction
- Action<IRelationalCommandBuilder>
Uma ação de junção opcional.
Aplica-se a
Entity Framework