Condividi tramite


DbExpressionBuilder.All Metodo

Definizione

Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.

Overload

All(DbExpression, Func<DbExpression,DbExpression>)

Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.

All(DbExpressionBinding, DbExpression)

Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.

All(DbExpression, Func<DbExpression,DbExpression>)

Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbQuantifierExpression ^ All(System::Data::Common::CommandTrees::DbExpression ^ source, Func<System::Data::Common::CommandTrees::DbExpression ^, System::Data::Common::CommandTrees::DbExpression ^> ^ predicate);
public static System.Data.Common.CommandTrees.DbQuantifierExpression All (this System.Data.Common.CommandTrees.DbExpression source, Func<System.Data.Common.CommandTrees.DbExpression,System.Data.Common.CommandTrees.DbExpression> predicate);
static member All : System.Data.Common.CommandTrees.DbExpression * Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> -> System.Data.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function All (source As DbExpression, predicate As Func(Of DbExpression, DbExpression)) As DbQuantifierExpression

Parametri

source
DbExpression

Espressione che specifica il set di input.

predicate
Func<DbExpression,DbExpression>

Metodo che rappresenta un predicato da valutare per ogni membro del set di input. Questo metodo deve produrre un'espressione con un tipo di risultato booleano che fornisce la logica predicativa.

Restituisce

DbQuantifierExpression

Nuovo DbQuantifierExpression che rappresenta l'operazione All.

Eccezioni

source o predicate è null.

-oppure-

L'espressione generata da predicate è Null.

source non dispone di un tipo di risultato della raccolta.

-oppure-

L'espressione generata da Predicate non ha un tipo di risultato Boolean.

Si applica a

All(DbExpressionBinding, DbExpression)

Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbQuantifierExpression ^ All(System::Data::Common::CommandTrees::DbExpressionBinding ^ input, System::Data::Common::CommandTrees::DbExpression ^ predicate);
public static System.Data.Common.CommandTrees.DbQuantifierExpression All (this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate);
static member All : System.Data.Common.CommandTrees.DbExpressionBinding * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function All (input As DbExpressionBinding, predicate As DbExpression) As DbQuantifierExpression

Parametri

input
DbExpressionBinding

Associazione a un'espressione che specifica il set di input.

predicate
DbExpression

Espressione che rappresenta un predicato da valutare per ogni membro del set di input.

Restituisce

DbQuantifierExpression

Nuovo DbQuantifierExpression che rappresenta l'operazione All.

Eccezioni

input o predicate è null.

predicate non contiene un tipo di risultato booleano.

Si applica a