DbFunctions.StandardDeviation-Methode (IEnumerable<Nullable<Int64>>)
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Wenn sie als Teil einer LINQ to Entities-Abfrage verwendet wird, ruft diese Methode die kanonische StDev-EDM-Funktion auf, um die Standardabweichung der Auflistung zu berechnen.
Namespace: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
<DbFunctionAttribute("Edm", "StDev")> _
Public Shared Function StandardDeviation ( _
collection As IEnumerable(Of Nullable(Of Long)) _
) As Nullable(Of Double)
'Usage
Dim collection As IEnumerable(Of Nullable(Of Long))
Dim returnValue As Nullable(Of Double)
returnValue = DbFunctions.StandardDeviation(collection)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[DbFunctionAttribute("Edm", "StDev")]
public static Nullable<double> StandardDeviation(
IEnumerable<Nullable<long>> collection
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
[DbFunctionAttribute(L"Edm", L"StDev")]
public:
static Nullable<double> StandardDeviation(
IEnumerable<Nullable<long long>>^ collection
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
[<DbFunctionAttribute("Edm", "StDev")>]
static member StandardDeviation :
collection:IEnumerable<Nullable<int64>> -> Nullable<float>
public static function StandardDeviation(
collection : IEnumerable<Nullable<long>>
) : Nullable<double>
Parameter
- collection
Typ: System.Collections.Generic.IEnumerable<Nullable<Int64>>
Die Auflistung, mit deren Hilfe die Berechnung ausgeführt werden soll.
Rückgabewert
Typ: System.Nullable<Double>
Die Standardabweichung.
Hinweise
Sie können diese Funktion nicht direkt aufrufen. Diese Funktion kann nur innerhalb einer LINQ to Entities-Abfrage vorkommen. Diese Funktion wird in eine entsprechende Funktion in der Datenbank übersetzt.