ParameterBuilder.Decimal Method

Definition

Creates a new parameter definition to pass Decimal 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.Performance", "CA1822:MarkMembersAsStatic")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public System.Data.Entity.Migrations.Model.ParameterModel Decimal (Nullable<byte> precision = null, Nullable<byte> scale = null, Nullable<decimal> defaultValue = null, string defaultValueSql = null, string name = null, string storeType = null, bool outParameter = false);
member this.Decimal : Nullable<byte> * Nullable<byte> * Nullable<decimal> * string * string * string * bool -> System.Data.Entity.Migrations.Model.ParameterModel
Public Function Decimal (Optional precision As Nullable(Of Byte) = null, Optional scale As Nullable(Of Byte) = null, Optional defaultValue As Nullable(Of Decimal) = null, Optional defaultValueSql As String = null, Optional name As String = null, Optional storeType As String = null, Optional outParameter As Boolean = false) As ParameterModel

Parameters

precision
Nullable<Byte>

The numeric precision of the parameter.

scale
Nullable<Byte>

The numeric scale of the parameter.

defaultValue
Nullable<Decimal>

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