DbExpressionBuilder.Constant 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 DbConstantExpression。
多載
Constant(TypeUsage, Object) |
使用給定的常數值,建立指定基本型別的新 DbConstantExpression。 |
Constant(Object) |
使用指定的常數值,建立新的 DbConstantExpression。 |
Constant(TypeUsage, Object)
使用給定的常數值,建立指定基本型別的新 DbConstantExpression。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbConstantExpression ^ Constant(System::Data::Metadata::Edm::TypeUsage ^ constantType, System::Object ^ value);
public static System.Data.Common.CommandTrees.DbConstantExpression Constant (this System.Data.Metadata.Edm.TypeUsage constantType, object value);
static member Constant : System.Data.Metadata.Edm.TypeUsage * obj -> System.Data.Common.CommandTrees.DbConstantExpression
<Extension()>
Public Function Constant (constantType As TypeUsage, value As Object) As DbConstantExpression
參數
- constantType
- TypeUsage
常數值的型別。
- value
- Object
要表示的常數值。
傳回
具有指定之值且結果類型為 constantType
的新 DbConstantExpression。
例外狀況
value
或 constantType
為 null。
value
不是有效常數類型的實例、 constantType
不代表基本型別,或 value
與 所 constantType
表示的類型不同。
適用於
Constant(Object)
使用指定的常數值,建立新的 DbConstantExpression。
public:
static System::Data::Common::CommandTrees::DbConstantExpression ^ Constant(System::Object ^ value);
public static System.Data.Common.CommandTrees.DbConstantExpression Constant (object value);
static member Constant : obj -> System.Data.Common.CommandTrees.DbConstantExpression
Public Function Constant (value As Object) As DbConstantExpression
參數
- value
- Object
要表示的常數值。
傳回
具有指定之值的新 DbConstantExpression。
例外狀況
value
為 null。
value
不是有效常數型別的執行個體。