DbExpressionBuilder.Constant 方法 (TypeUsage, Object)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
使用给定的常量值创建一个具有指定基元类型的新的 DbConstantExpression。
命名空间: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ExtensionAttribute> _
Public Shared Function Constant ( _
constantType As TypeUsage, _
value As Object _
) As DbConstantExpression
用法
Dim constantType As TypeUsage
Dim value As Object
Dim returnValue As DbConstantExpression
returnValue = constantType.Constant(value)
public static DbConstantExpression Constant(
this TypeUsage constantType,
Object value
)
[ExtensionAttribute]
public:
static DbConstantExpression^ Constant(
TypeUsage^ constantType,
Object^ value
)
static member Constant :
constantType:TypeUsage *
value:Object -> DbConstantExpression
public static function Constant(
constantType : TypeUsage,
value : Object
) : DbConstantExpression
参数
- constantType
类型:System.Data.Entity.Core.Metadata.Edm.TypeUsage
常量值的类型。
- value
类型:System.Object
要表示的常量值。
返回值
类型:System.Data.Entity.Core.Common.CommandTrees.DbConstantExpression
具有给定值和 constantType 结果类型的一个新的 DbConstantExpression。
使用说明
在 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)。
异常
例外 | 条件 |
---|---|
ArgumentNullException | valueconstantType |
ArgumentException | value 不是有效常量类型的实例,constantType 不表示基元类型,或者 value 所属的基元类型与 constantType 表示的基元类型不同。 |
请参阅
参考
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空间