Partager via


DefaultQuerySqlGenerator.GenerateList Méthode

Définition

Surcharges

GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>)

Effectue la génération sur une liste d’éléments en visitant chaque élément.

GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>)

Effectue la génération sur une liste d’éléments en visitant chaque élément.

GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>)

Effectuez la génération sur une liste d’éléments à l’aide d’une action de génération fournie et d’une action de jointure facultative.

GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>)

Effectuez la génération sur une liste d’éléments à l’aide d’une action de génération fournie et d’une action de jointure facultative.

GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>)

Source:
DefaultQuerySqlGenerator.cs
Source:
DefaultQuerySqlGenerator.cs

Effectue la génération sur une liste d’éléments en visitant chaque élément.

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))

Paramètres

items
IReadOnlyList<Expression>

Liste d'éléments.

joinAction
Action<IRelationalCommandBuilder>

Action de jointure facultative.

S’applique à

GenerateList(IReadOnlyList<Expression>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>)

Source:
DefaultQuerySqlGenerator.cs

Effectue la génération sur une liste d’éléments en visitant chaque élément.

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)

Paramètres

items
IReadOnlyList<Expression>

Liste d'éléments.

joinAction
Action<IRelationalCommandBuilder>

Action de jointure facultative.

typeMappings
IReadOnlyList<RelationalTypeMapping>

Mappages de types d’options pour chaque élément.

S’applique à

GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>, IReadOnlyList<RelationalTypeMapping>)

Source:
DefaultQuerySqlGenerator.cs

Effectuez la génération sur une liste d’éléments à l’aide d’une action de génération fournie et d’une action de jointure facultative.

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)

Paramètres de type

T

Type d'élément.

Paramètres

items
IReadOnlyList<T>

Liste d'éléments.

generationAction
Action<T>

Action de génération.

joinAction
Action<IRelationalCommandBuilder>

Action de jointure facultative.

typeMappings
IReadOnlyList<RelationalTypeMapping>

Mappages de types d’options pour chaque élément.

S’applique à

GenerateList<T>(IReadOnlyList<T>, Action<T>, Action<IRelationalCommandBuilder>)

Source:
DefaultQuerySqlGenerator.cs
Source:
DefaultQuerySqlGenerator.cs

Effectuez la génération sur une liste d’éléments à l’aide d’une action de génération fournie et d’une action de jointure facultative.

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))

Paramètres de type

T

Type d'élément.

Paramètres

items
IReadOnlyList<T>

Liste d'éléments.

generationAction
Action<T>

Action de génération.

joinAction
Action<IRelationalCommandBuilder>

Action de jointure facultative.

S’applique à