SqlServerDbFunctionsExtensions.VariancePopulation 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
VariancePopulation(DbFunctions, IEnumerable<Single>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Int64>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Int16>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Int32>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Decimal>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Byte>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Double>) |
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's |
VariancePopulation(DbFunctions, IEnumerable<Single>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<float> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<single> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Single)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Single>
The values.
Returns
The computed population variance.
Applies to
VariancePopulation(DbFunctions, IEnumerable<Int64>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<long> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<int64> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Long)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Int64>
The values.
Returns
The computed population variance.
Applies to
VariancePopulation(DbFunctions, IEnumerable<Int16>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<short> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<int16> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Short)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Int16>
The values.
Returns
The computed population variance.
Applies to
VariancePopulation(DbFunctions, IEnumerable<Int32>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<int> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<int> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Integer)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Int32>
The values.
Returns
The computed population variance.
Applies to
VariancePopulation(DbFunctions, IEnumerable<Decimal>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<decimal> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<decimal> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Decimal)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Decimal>
The values.
Returns
The computed population variance.
Applies to
VariancePopulation(DbFunctions, IEnumerable<Byte>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<byte> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<byte> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Byte)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Byte>
The values.
Returns
The computed population variance.
Applies to
VariancePopulation(DbFunctions, IEnumerable<Double>)
Returns the population variance of all values in the specified expression.
Corresponds to SQL Server's VARP
.
public static double? VariancePopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<double> values);
static member VariancePopulation : Microsoft.EntityFrameworkCore.DbFunctions * seq<double> -> Nullable<double>
<Extension()>
Public Function VariancePopulation (_ As DbFunctions, values As IEnumerable(Of Double)) As Nullable(Of Double)
Parameters
The DbFunctions instance.
- values
- IEnumerable<Double>
The values.
Returns
The computed population variance.
Applies to
Entity Framework