DbInsertCommandTree.Returning 属性

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

获取一个 DbExpression,它指定要基于修改的行返回的结果投影。 如果为 null,则指示不应从此命令返回任何结果。

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

语法

声明
Public ReadOnly Property Returning As DbExpression 
    Get
用法
Dim instance As DbInsertCommandTree 
Dim value As DbExpression 

value = instance.Returning
public DbExpression Returning { get; }
public:
property DbExpression^ Returning {
    DbExpression^ get ();
}
member Returning : DbExpression
function get Returning () : DbExpression

属性值

类型:System.Data.Entity.Core.Common.CommandTrees.DbExpression
指定要基于修改的行返回的结果投影的 DbExpression

备注

返回投影只能包括以下元素:NewInstance expressionProperty 表达式。

请参阅

参考

DbInsertCommandTree 类

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