Sdílet prostřednictvím


SqlFunctions.ChecksumAggregate Metoda

Definice

Přetížení

ChecksumAggregate(IEnumerable<Int32>)

Vrátí kontrolní součet hodnot v kolekci. Hodnoty Null jsou ignorovány.

ChecksumAggregate(IEnumerable<Nullable<Int32>>)

Vrátí kontrolní součet hodnot v kolekci. Hodnoty Null jsou ignorovány.

ChecksumAggregate(IEnumerable<Int32>)

Vrátí kontrolní součet hodnot v kolekci. Hodnoty Null jsou ignorovány.

[System.Data.Entity.DbFunction("SqlServer", "CHECKSUM_AGG")]
public static Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg);
static member ChecksumAggregate : seq<int> -> Nullable<int>
Public Shared Function ChecksumAggregate (arg As IEnumerable(Of Integer)) As Nullable(Of Integer)

Parametry

arg
IEnumerable<Int32>

Kolekce hodnot, ze kterých se vypočítá kontrolní součet.

Návraty

Kontrolní součet vypočítaný ze vstupní kolekce.

Atributy

Platí pro

ChecksumAggregate(IEnumerable<Nullable<Int32>>)

Vrátí kontrolní součet hodnot v kolekci. Hodnoty Null jsou ignorovány.

[System.Data.Entity.DbFunction("SqlServer", "CHECKSUM_AGG")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<Nullable<int>> arg);
static member ChecksumAggregate : seq<Nullable<int>> -> Nullable<int>
Public Shared Function ChecksumAggregate (arg As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Integer)

Parametry

arg
IEnumerable<Nullable<Int32>>

Kolekce hodnot, ze kterých se vypočítá kontrolní součet.

Návraty

Kontrolní součet vypočítaný ze vstupní kolekce.

Atributy

Platí pro