DbExpressionBuilder.Variable 方法

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

创建一个新的 DbVariableReferenceExpression,它使用指定的名称和类型引用变量。

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

语法

声明
<ExtensionAttribute> _
Public Shared Function Variable ( _
    type As TypeUsage, _
    name As String _
) As DbVariableReferenceExpression
用法
Dim type As TypeUsage 
Dim name As String 
Dim returnValue As DbVariableReferenceExpression 

returnValue = type.Variable(name)
public static DbVariableReferenceExpression Variable(
    this TypeUsage type,
    string name
)
[ExtensionAttribute]
public:
static DbVariableReferenceExpression^ Variable(
    TypeUsage^ type, 
    String^ name
)
static member Variable : 
        type:TypeUsage * 
        name:string -> DbVariableReferenceExpression
public static function Variable(
    type : TypeUsage, 
    name : String
) : DbVariableReferenceExpression

参数

返回值

类型:System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression
一个 DbVariableReferenceExpression,它表示对具有指定名称和类型的变量的引用;表达式的结果类型将与 type 相同。

使用说明

在 Visual Basic 和 C# 中,可以在 TypeUsage 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)

请参阅

参考

DbExpressionBuilder 类

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