Sdílet prostřednictvím


DbExpressionBuilder.Any Metoda

Definice

Vytvoří nový DbExpression , který určuje, zda zadaný argument set není prázdný.

Přetížení

Any(DbExpression)

Vytvoří nový DbExpression , který určuje, zda zadaný argument set není prázdný.

Any(DbExpression, Func<DbExpression,DbExpression>)

Vytvoří nový DbQuantifierExpression , který určuje, zda daný predikát platí pro některý prvek vstupní sady.

Any(DbExpressionBinding, DbExpression)

Vytvoří nový DbQuantifierExpression , který určuje, zda daný predikát platí pro některý prvek vstupní sady.

Any(DbExpression)

Vytvoří nový DbExpression , který určuje, zda zadaný argument set není prázdný.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbExpression ^ Any(System::Data::Common::CommandTrees::DbExpression ^ source);
public static System.Data.Common.CommandTrees.DbExpression Any (this System.Data.Common.CommandTrees.DbExpression source);
static member Any : System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbExpression
<Extension()>
Public Function Any (source As DbExpression) As DbExpression

Parametry

source
DbExpression

Výraz, který určuje vstupní sadu.

Návraty

Nový DbNotExpression použitý u nového DbIsEmptyExpression se zadaným argumentem.

Výjimky

source má hodnotu null.

source nemá typ výsledku kolekce.

Platí pro

Any(DbExpression, Func<DbExpression,DbExpression>)

Vytvoří nový DbQuantifierExpression , který určuje, zda daný predikát platí pro některý prvek vstupní sady.

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

Parametry

source
DbExpression

Výraz, který určuje vstupní sadu.

predicate
Func<DbExpression,DbExpression>

Metoda představující predikát, který se má vyhodnotit pro každý člen vstupní sady. Tato metoda musí vytvořit výraz s logickým typem výsledku, který poskytuje logiku predikátu.

Návraty

Nový DbQuantifierExpression, který představuje operaci Any.

Výjimky

source nebo predicate má hodnotu null.

-nebo-

Výraz vytvořený pomocí predicate má hodnotu null.

source nemá typ výsledku kolekce.

-nebo-

Výraz vytvořený nástrojem predicate nemá logický typ výsledku.

Platí pro

Any(DbExpressionBinding, DbExpression)

Vytvoří nový DbQuantifierExpression , který určuje, zda daný predikát platí pro některý prvek vstupní sady.

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

Parametry

input
DbExpressionBinding

Vazba výrazu, která určuje vstupní sadu.

predicate
DbExpression

Výraz představující predikát, který se má vyhodnotit pro každý člen vstupní sady.

Návraty

Nový DbQuantifierExpression, který představuje operaci Any.

Výjimky

input nebo predicate má hodnotu null.

Výraz vytvořený nástrojem predicate nemá logický typ výsledku.

Platí pro