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