Share via


SqlFunctions.ChecksumAggregate Method

Definition

Overloads

ChecksumAggregate(IEnumerable<Int32>)

Returns the checksum of the values in a collection. Null values are ignored.

ChecksumAggregate(IEnumerable<Nullable<Int32>>)

Returns the checksum of the values in a collection. Null values are ignored.

ChecksumAggregate(IEnumerable<Int32>)

Returns the checksum of the values in a collection. Null values are ignored.

[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)

Parameters

arg
IEnumerable<Int32>

The collection of values over which the checksum is computed.

Returns

The checksum computed from the input collection.

Attributes

Applies to

ChecksumAggregate(IEnumerable<Nullable<Int32>>)

Returns the checksum of the values in a collection. Null values are ignored.

[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)

Parameters

arg
IEnumerable<Nullable<Int32>>

The collection of values over which the checksum is computed.

Returns

The checksum computed from the input collection.

Attributes

Applies to