다음을 통해 공유


DbExpressionBuilder.All 메서드

정의

오버로드

All(DbExpression, Func<DbExpression,DbExpression>)

지정된 조건자가 입력 집합의 모든 요소에 대해 성립하는지 여부를 결정하는 새 DbQuantifierExpression을 만듭니다.

All(DbExpressionBinding, DbExpression)

지정된 조건자가 입력 집합의 모든 요소에 대해 성립하는지 여부를 결정하는 새 DbQuantifierExpression을 만듭니다.

All(DbExpression, Func<DbExpression,DbExpression>)

지정된 조건자가 입력 집합의 모든 요소에 대해 성립하는지 여부를 결정하는 새 DbQuantifierExpression을 만듭니다.

public static System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression All(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 All : 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 All (source As DbExpression, predicate As Func(Of DbExpression, DbExpression)) As DbQuantifierExpression

매개 변수

source
DbExpression

입력 집합을 지정하는 식입니다.

predicate
Func<DbExpression,DbExpression>

입력 집합의 각 멤버에 대해 평가할 조건자를 나타내는 메서드입니다. 이 메서드는 조건자 논리를 제공하는 부울 결과 형식이 포함된 식을 생성해야 합니다.

반환

모든 작업을 나타내는 새 DbQuantifierExpression입니다.

예외

조건자에서 생성된 식은 null입니다.

조건자에서 생성된 식에는 부울 결과 형식이 없습니다.

적용 대상

All(DbExpressionBinding, DbExpression)

지정된 조건자가 입력 집합의 모든 요소에 대해 성립하는지 여부를 결정하는 새 DbQuantifierExpression을 만듭니다.

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

매개 변수

input
DbExpressionBinding

입력 집합을 지정하는 식 바인딩입니다.

predicate
DbExpression

입력 집합의 각 멤버에 대해 평가할 조건자를 나타내는 식입니다.

반환

모든 작업을 나타내는 새 DbQuantifierExpression입니다.

예외

input 또는 predicate가 null입니다.

조건자는 부울 결과 형식이 없습니다.

적용 대상