DbExpressionBuilder.Constant 方法 (TypeUsage, Object)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 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-tw/library/bb384936(v=vs.113)或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=vs.113)。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | valueconstantType |
ArgumentException | value 不是有效的常數類型之執行個體,constantType 不表示基本的類型,且 value 屬於不同的基本類型 (由 constantType 表示)。 |
請參閱
參考
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空間