SqlServerDbFunctionsExtensions.StandardDeviationPopulation Method

Definition

Overloads

StandardDeviationPopulation(DbFunctions, IEnumerable<Byte>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Decimal>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Double>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Int16>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Int32>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Int64>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Single>)

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

StandardDeviationPopulation(DbFunctions, IEnumerable<Byte>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<byte> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Byte>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0

StandardDeviationPopulation(DbFunctions, IEnumerable<Decimal>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<decimal> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Decimal>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0

StandardDeviationPopulation(DbFunctions, IEnumerable<Double>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<double> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Double>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0

StandardDeviationPopulation(DbFunctions, IEnumerable<Int16>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<short> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Int16>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0

StandardDeviationPopulation(DbFunctions, IEnumerable<Int32>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<int> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Int32>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0

StandardDeviationPopulation(DbFunctions, IEnumerable<Int64>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<long> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Int64>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0

StandardDeviationPopulation(DbFunctions, IEnumerable<Single>)

Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs
Source:
SqlServerDbFunctionsExtensions.cs

Returns the population standard deviation of all values in the specified expression. Corresponds to SQL Server's STDEVP.

C#
public static double? StandardDeviationPopulation (this Microsoft.EntityFrameworkCore.DbFunctions _, System.Collections.Generic.IEnumerable<float> values);

Parameters

_
DbFunctions

The DbFunctions instance.

values
IEnumerable<Single>

The values.

Returns

The computed population standard deviation.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 7.0, 8.0, 9.0