ParameterBuilder.DateTimeOffset 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的參數定義,以傳遞 DateTimeOffset 資料。
Entity Framework 移轉 API 並非設計來接受不受信任的來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防範 SQL 插入式攻擊等。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic")]
public System.Data.Entity.Migrations.Model.ParameterModel DateTimeOffset (Nullable<byte> precision = null, Nullable<DateTimeOffset> defaultValue = null, string defaultValueSql = null, string name = null, string storeType = null, bool outParameter = false);
member this.DateTimeOffset : Nullable<byte> * Nullable<DateTimeOffset> * string * string * string * bool -> System.Data.Entity.Migrations.Model.ParameterModel
Public Function DateTimeOffset (Optional precision As Nullable(Of Byte) = null, Optional defaultValue As Nullable(Of DateTimeOffset) = null, Optional defaultValueSql As String = null, Optional name As String = null, Optional storeType As String = null, Optional outParameter As Boolean = false) As ParameterModel
參數
- defaultValue
- Nullable<DateTimeOffset>
要當做此參數預設值使用的常數值。
- defaultValueSql
- String
做為此參數預設值的 SQL 運算式。
- name
- String
參數名稱。
- storeType
- String
用於此參數的提供者特定資料類型。
- outParameter
- Boolean
值,指出參數是否為輸出參數。
傳回
新建構的參數定義。
- 屬性