DbExpressionBuilder.Any Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Any(DbExpression) |
Crea un nuovo oggetto DbExpression che determina se l'argomento di set specificato è non vuoto. |
Any(DbExpression, Func<DbExpression,DbExpression>) |
Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input. |
Any(DbExpressionBinding, DbExpression) |
Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input. |
Any(DbExpression)
Crea un nuovo oggetto DbExpression che determina se l'argomento di set specificato è non vuoto.
public static System.Data.Entity.Core.Common.CommandTrees.DbExpression Any (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source);
static member Any : System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbExpression
<Extension()>
Public Function Any (source As DbExpression) As DbExpression
Parametri
- source
- DbExpression
Espressione che specifica il set di input.
Restituisce
Nuovo DbNotExpression applicato al nuovo DbIsEmptyExpression con l'argomento specificato.
Eccezioni
source è Null.
l'origine non dispone di un tipo di risultato della raccolta.
Si applica a
Any(DbExpression, Func<DbExpression,DbExpression>)
Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.
public static System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression Any (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Data.Entity.Core.Common.CommandTrees.DbExpression> predicate);
static member Any : System.Data.Entity.Core.Common.CommandTrees.DbExpression * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Data.Entity.Core.Common.CommandTrees.DbExpression> -> System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function Any (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 il 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
Nuovo DbQuantifierExpression che rappresenta l'operazione Any.
Eccezioni
L'espressione prodotta dal predicato è Null.
L'espressione prodotta dal predicato non ha un tipo di risultato booleano.
Si applica a
Any(DbExpressionBinding, DbExpression)
Crea un nuovo oggetto DbQuantifierExpression che determina se il predicato specificato vale per qualsiasi elemento del set di input.
public static System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression Any (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Data.Entity.Core.Common.CommandTrees.DbExpression predicate);
static member Any : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression
<Extension()>
Public Function Any (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
Nuovo DbQuantifierExpression che rappresenta l'operazione Any.
Eccezioni
input o predicato è Null.
L'espressione prodotta dal predicato non ha un tipo di risultato booleano.