共用方式為


ParameterBuilder.Single 方法

定義

建立新的參數定義以傳遞單一資料。

Entity Framework 移轉 API 的設計目的不是接受未受信任來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防止 SQL 插入式攻擊等。

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public System.Data.Entity.Migrations.Model.ParameterModel Single (Nullable<float> defaultValue = null, string defaultValueSql = null, string name = null, string storeType = null, bool outParameter = false);
member this.Single : Nullable<single> * string * string * string * bool -> System.Data.Entity.Migrations.Model.ParameterModel
Public Function Single (Optional defaultValue As Nullable(Of Single) = 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<Single>

要作為此參數預設值的常數值。

defaultValueSql
String

做為此參數預設值的 SQL 運算式。

name
String

參數名稱。

storeType
String

用於此參數的提供者特定資料類型。

outParameter
Boolean

值,指出參數是否為輸出參數。

傳回

新建構的參數定義。

屬性

適用於