共用方式為


ParameterBuilder.Geography 方法

定義

建立新的參數定義來傳遞地理資料。

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 Geography (System.Data.Entity.Spatial.DbGeography defaultValue = null, string defaultValueSql = null, string name = null, string storeType = null, bool outParameter = false);
member this.Geography : System.Data.Entity.Spatial.DbGeography * string * string * string * bool -> System.Data.Entity.Migrations.Model.ParameterModel
Public Function Geography (Optional defaultValue As DbGeography = null, Optional defaultValueSql As String = null, Optional name As String = null, Optional storeType As String = null, Optional outParameter As Boolean = false) As ParameterModel

參數

defaultValue
DbGeography

要當做此參數預設值使用的常數值。

defaultValueSql
String

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

name
String

參數名稱。

storeType
String

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

outParameter
Boolean

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

傳回

新建構的參數定義。

屬性

適用於