DbUpdateCommandTree.Predicate Property

Definition

Gets an DbExpression that specifies the predicate used to determine which members of the target collection should be updated.

public:
 property System::Data::Common::CommandTrees::DbExpression ^ Predicate { System::Data::Common::CommandTrees::DbExpression ^ get(); };
public System.Data.Common.CommandTrees.DbExpression Predicate { get; }
member this.Predicate : System.Data.Common.CommandTrees.DbExpression
Public ReadOnly Property Predicate As DbExpression

Property Value

An DbExpression that specifies the predicate used to determine which members of the target collection should be updated.

Remarks

The predicate can include only the following elements: a DbComparisonExpression representing equality; DbConstantExpression; DbIsNullExpression; DbPropertyExpression; a DbVariableReferenceExpression that references the target; DbAndExpression; DbOrExpression; DbNotExpression.

Applies to