SqlServerDbFunctionsExtensions.IsDate(DbFunctions, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
驗證指定的字串是否為有效的日期。
對應至 SQL Server 的 ISDATE('date')
。
public static bool IsDate (this Microsoft.EntityFrameworkCore.DbFunctions _, string expression);
static member IsDate : Microsoft.EntityFrameworkCore.DbFunctions * string -> bool
<Extension()>
Public Function IsDate (_ As DbFunctions, expression As String) As Boolean
參數
DbFunctions 執行個體。
- expression
- String
要驗證的運算式
傳回
true 表示有效日期,否則為 false。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。