SqlFunctions.ChecksumAggregate Method

Definition

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

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.

Remarks

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM_AGG (Transact-SQL).

ChecksumAggregate(IEnumerable<Int32>)

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

C#
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM_AGG")]
public static int? ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg);

Parameters

arg
IEnumerable<Int32>

The collection of values over which the checksum is computed.

Returns

The checksum computed from the input collection.

Attributes

Remarks

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM_AGG (Transact-SQL).

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

ChecksumAggregate(IEnumerable<Nullable<Int32>>)

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

C#
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM_AGG")]
public static int? ChecksumAggregate(System.Collections.Generic.IEnumerable<int?> arg);

Parameters

arg
IEnumerable<Nullable<Int32>>

The collection of values over which the checksum is computed.

Returns

The checksum computed from the input collection.

Attributes

Remarks

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM_AGG (Transact-SQL).

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1