DbExpressionBuilder.LessThan(DbExpression, DbExpression) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 DbComparisonExpression,這個運算式會判斷左引數是否小於右引數。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbComparisonExpression ^ LessThan(System::Data::Common::CommandTrees::DbExpression ^ left, System::Data::Common::CommandTrees::DbExpression ^ right);
public static System.Data.Common.CommandTrees.DbComparisonExpression LessThan (this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right);
static member LessThan : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbComparisonExpression
<Extension()>
Public Function LessThan (left As DbExpression, right As DbExpression) As DbComparisonExpression
參數
- left
- DbExpression
指定左引數的運算式。
- right
- DbExpression
指定右引數的運算式。
傳回
表示小於比較的新 DbComparisonExpression。
例外狀況
left
或 right
為 null。
left
和 right
之間沒有一般順序比較的結果型別。