DbExpressionBuilder.SetClause 方法

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

创建一个表示将属性设置为值的新 DbSetClause

命名空间:  System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
Public Shared Function SetClause ( _
    property As DbExpression, _
    value As DbExpression _
) As DbSetClause
用法
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

参数

返回值

类型:System.Data.Entity.Core.Common.CommandTrees.DbSetClause
新创建的 set 子句。

请参阅

参考

DbExpressionBuilder 类

System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空间