SqlServerDbFunctionsExtensions.SmallDateTimeFromParts 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 結構的新實例 DateTime 初始化為指定的年份、月、日、小時和分鐘。
對應至 SQL Server 的 SMALLDATETIMEFROMPARTS(year, month, day, hour, minute)
。
public static DateTime SmallDateTimeFromParts (this Microsoft.EntityFrameworkCore.DbFunctions _, int year, int month, int day, int hour, int minute);
static member SmallDateTimeFromParts : Microsoft.EntityFrameworkCore.DbFunctions * int * int * int * int * int -> DateTime
<Extension()>
Public Function SmallDateTimeFromParts (_ As DbFunctions, year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer) As DateTime
參數
DbFunctions 執行個體。
- year
- Int32
年 (1753 到 9999) 。
- month
- Int32
月份 (1 到 12)。
- day
- Int32
日 (1 到 month 中的天數)。
- hour
- Int32
小時 (0 到 23)。
- minute
- Int32
分鐘 (0 到 59)。
傳回
結構的新實例 DateTime ,指向指定的年份、月、日、小時和分鐘。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。