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