DbExpressionBuilder.NewRow 方法

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

创建一个新的 DbNewInstanceExpression,它生成具有指定的命名列和给定值并且指定为表达式的一行。

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

语法

声明
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public Shared Function NewRow ( _
    columnValues As IEnumerable(Of KeyValuePair(Of String, DbExpression)) _
) As DbNewInstanceExpression
用法
Dim columnValues As IEnumerable(Of KeyValuePair(Of String, DbExpression))
Dim returnValue As DbNewInstanceExpression 

returnValue = DbExpressionBuilder.NewRow(columnValues)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static DbNewInstanceExpression NewRow(
    IEnumerable<KeyValuePair<string, DbExpression>> columnValues
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
static DbNewInstanceExpression^ NewRow(
    IEnumerable<KeyValuePair<String^, DbExpression^>>^ columnValues
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
static member NewRow : 
        columnValues:IEnumerable<KeyValuePair<string, DbExpression>> -> DbNewInstanceExpression
public static function NewRow(
    columnValues : IEnumerable<KeyValuePair<String, DbExpression>>
) : DbNewInstanceExpression

参数

返回值

类型:System.Data.Entity.Core.Common.CommandTrees.DbNewInstanceExpression
表示行的构造的一个新的 DbNewInstanceExpression。

异常

例外 条件
ArgumentNullException

columnValues 为 null,或者包含具有 null 列名或表达式的元素。

ArgumentException

columnValues 为空,或包含重复的或无效的列名称。

请参阅

参考

DbExpressionBuilder 类

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