DbFunctions.VarP Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
VarP(IEnumerable<Nullable<Decimal>>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Nullable<Double>>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Int64>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Nullable<Int32>>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Double>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Decimal>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Int32>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Nullable<Int64>>) |
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population. |
VarP(IEnumerable<Nullable<Decimal>>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<Nullable<decimal>> collection);
static member VarP : seq<Nullable<decimal>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Decimal))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Decimal>>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Nullable<Double>>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<Nullable<double>> collection);
static member VarP : seq<Nullable<double>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Double))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Double>>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Int64>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<long> collection);
static member VarP : seq<int64> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Long)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Int64>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Nullable<Int32>>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<Nullable<int>> collection);
static member VarP : seq<Nullable<int>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Int32>>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Double>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<double> collection);
static member VarP : seq<double> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Double)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Double>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Decimal>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<decimal> collection);
static member VarP : seq<decimal> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Decimal)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Decimal>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Int32>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<int> collection);
static member VarP : seq<int> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Integer)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Int32>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Nullable<Int64>>)
When used as part of a LINQ to Entities query, this method invokes the canonical VarP EDM function to calculate the variance for the population.
[System.Data.Entity.DbFunction("Edm", "VarP")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static Nullable<double> VarP (System.Collections.Generic.IEnumerable<Nullable<long>> collection);
static member VarP : seq<Nullable<int64>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Long))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Int64>>
The collection over which to perform the calculation.
Returns
The variance for the population.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query. This function is translated to a corresponding function in the database.
Applies to
Entity Framework