ParameterBuilder.Geography Method

Definition

Creates a new parameter definition to pass geography data.

Entity Framework Migrations APIs are not designed to accept input provided by untrusted sources (such as the end user of an application). If input is accepted from such sources it should be validated before being passed to these APIs to protect against SQL injection attacks etc.

[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

Parameters

defaultValue
DbGeography

Constant value to use as the default value for this parameter.

defaultValueSql
String

SQL expression used as the default value for this parameter.

name
String

The name of the parameter.

storeType
String

Provider specific data type to use for this parameter.

outParameter
Boolean

A value indicating whether the parameter is an output parameter.

Returns

The newly constructed parameter definition.

Attributes

Applies to