Metodo DbExpressionBuilder.SetClause
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Crea un nuovo oggetto DbSetClause che rappresenta l'impostazione di una proprietà su un valore.
Spazio dei nomi: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Shared Function SetClause ( _
property As DbExpression, _
value As DbExpression _
) As DbSetClause
'Utilizzo
Dim property As DbExpression
Dim value As DbExpression
Dim returnValue As DbSetClause
returnValue = DbExpressionBuilder.SetClause(property, _
value)
public static DbSetClause SetClause(
DbExpression property,
DbExpression value
)
public:
static DbSetClause^ SetClause(
DbExpression^ property,
DbExpression^ value
)
static member SetClause :
property:DbExpression *
value:DbExpression -> DbSetClause
public static function SetClause(
property : DbExpression,
value : DbExpression
) : DbSetClause
Parametri
- property
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Proprietà da impostare.
- value
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Valore su cui impostare la proprietà.
Valore restituito
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbSetClause
Clausola set appena creata.
Vedere anche
Riferimento
Spazio dei nomi System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder