SqlFunctions.Checksum Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the checksum value computed over the input arguments.
Overloads
Checksum(Nullable<Double>, Nullable<Double>) |
Returns the checksum value computed over the input arguments. |
Checksum(String, String, String) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Guid>, Nullable<Guid>, Nullable<Guid>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Double>, Nullable<Double>, Nullable<Double>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Decimal>, Nullable<Decimal>, Nullable<Decimal>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>) |
Returns the checksum value computed over the input arguments. |
Checksum(Byte[], Byte[], Byte[]) |
Returns the checksum value computed over the input arguments. |
Checksum(String, String) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<TimeSpan>, Nullable<TimeSpan>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Guid>, Nullable<Guid>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Decimal>, Nullable<Decimal>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<DateTime>, Nullable<DateTime>) |
Returns the checksum value computed over the input arguments. |
Checksum(Byte[]) |
Returns the checksum value computed over the input argument. |
Checksum(Nullable<Boolean>) |
Returns the checksum value computed over the input argument. |
Checksum(Nullable<DateTime>) |
Returns the checksum value computed over the input argument. |
Checksum(Nullable<Decimal>) |
Returns the checksum value computed over the input argument. |
Checksum(Nullable<Double>) |
Returns the checksum value computed over the input argument. |
Checksum(Nullable<DateTimeOffset>) |
Returns the checksum value computed over the input argument. |
Checksum(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<TimeSpan>) |
Returns the checksum value computed over the input argument. |
Checksum(String) |
Returns the checksum value computed over the input argument. |
Checksum(Byte[], Byte[]) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Boolean>, Nullable<Boolean>) |
Returns the checksum value computed over the input arguments. |
Checksum(Nullable<Guid>) |
Returns the checksum value computed over the input argument. |
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Checksum(Nullable<Double>, Nullable<Double>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<double> arg1, Nullable<double> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (double? arg1, double? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<double> * Nullable<double> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Double), arg2 As Nullable(Of Double)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(String, String, String)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(System::String ^ arg1, System::String ^ arg2, System::String ^ arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (string arg1, string arg2, string arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : string * string * string -> Nullable<int>
Public Shared Function Checksum (arg1 As String, arg2 As String, arg3 As String) As Nullable(Of Integer)
Parameters
- arg1
- String
The value for which the checksum is calculated.
- arg2
- String
The value for which the checksum is calculated.
- arg3
- String
The value for which the checksum is calculated.
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<TimeSpan> arg1, Nullable<TimeSpan> arg2, Nullable<TimeSpan> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (TimeSpan? arg1, TimeSpan? arg2, TimeSpan? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<TimeSpan> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of TimeSpan), arg2 As Nullable(Of TimeSpan), arg3 As Nullable(Of TimeSpan)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Guid>, Nullable<Guid>, Nullable<Guid>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<Guid> arg1, Nullable<Guid> arg2, Nullable<Guid> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (Guid? arg1, Guid? arg2, Guid? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<Guid> * Nullable<Guid> * Nullable<Guid> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Guid), arg2 As Nullable(Of Guid), arg3 As Nullable(Of Guid)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Double>, Nullable<Double>, Nullable<Double>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<double> arg1, Nullable<double> arg2, Nullable<double> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (double? arg1, double? arg2, double? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<double> * Nullable<double> * Nullable<double> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Double), arg2 As Nullable(Of Double), arg3 As Nullable(Of Double)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Decimal>, Nullable<Decimal>, Nullable<Decimal>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<System::Decimal> arg1, Nullable<System::Decimal> arg2, Nullable<System::Decimal> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (decimal? arg1, decimal? arg2, decimal? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<decimal> * Nullable<decimal> * Nullable<decimal> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Decimal), arg2 As Nullable(Of Decimal), arg3 As Nullable(Of Decimal)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<DateTimeOffset> arg1, Nullable<DateTimeOffset> arg2, Nullable<DateTimeOffset> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (DateTimeOffset? arg1, DateTimeOffset? arg2, DateTimeOffset? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of DateTimeOffset), arg2 As Nullable(Of DateTimeOffset), arg3 As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
Parameters
- arg1
- Nullable<DateTimeOffset>
The value for which the checksum is calculated.
- arg2
- Nullable<DateTimeOffset>
The value for which the checksum is calculated.
- arg3
- Nullable<DateTimeOffset>
The value for which the checksum is calculated.
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<DateTime> arg1, Nullable<DateTime> arg2, Nullable<DateTime> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (DateTime? arg1, DateTime? arg2, DateTime? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of DateTime), arg2 As Nullable(Of DateTime), arg3 As Nullable(Of DateTime)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Byte[], Byte[], Byte[])
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(cli::array <System::Byte> ^ arg1, cli::array <System::Byte> ^ arg2, cli::array <System::Byte> ^ arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (byte[] arg1, byte[] arg2, byte[] arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : byte[] * byte[] * byte[] -> Nullable<int>
Public Shared Function Checksum (arg1 As Byte(), arg2 As Byte(), arg3 As Byte()) As Nullable(Of Integer)
Parameters
- arg1
- Byte[]
The character array for which the checksum is calculated.
- arg2
- Byte[]
The character array for which the checksum is calculated.
- arg3
- Byte[]
The character array for which the checksum is calculated.
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(String, String)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(System::String ^ arg1, System::String ^ arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (string arg1, string arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : string * string -> Nullable<int>
Public Shared Function Checksum (arg1 As String, arg2 As String) As Nullable(Of Integer)
Parameters
- arg1
- String
The value for which the checksum is calculated.
- arg2
- String
The value for which the checksum is calculated.
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<TimeSpan>, Nullable<TimeSpan>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<TimeSpan> arg1, Nullable<TimeSpan> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (TimeSpan? arg1, TimeSpan? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<TimeSpan> * Nullable<TimeSpan> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of TimeSpan), arg2 As Nullable(Of TimeSpan)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Guid>, Nullable<Guid>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<Guid> arg1, Nullable<Guid> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (Guid? arg1, Guid? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<Guid> * Nullable<Guid> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Guid), arg2 As Nullable(Of Guid)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Decimal>, Nullable<Decimal>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<System::Decimal> arg1, Nullable<System::Decimal> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (decimal? arg1, decimal? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<decimal> * Nullable<decimal> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Decimal), arg2 As Nullable(Of Decimal)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<bool> arg1, Nullable<bool> arg2, Nullable<bool> arg3);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (bool? arg1, bool? arg2, bool? arg3);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<bool> * Nullable<bool> * Nullable<bool> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Boolean), arg2 As Nullable(Of Boolean), arg3 As Nullable(Of Boolean)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<DateTime>, Nullable<DateTime>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<DateTime> arg1, Nullable<DateTime> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (DateTime? arg1, DateTime? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of DateTime), arg2 As Nullable(Of DateTime)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Byte[])
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(cli::array <System::Byte> ^ arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (byte[] arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : byte[] -> Nullable<int>
Public Shared Function Checksum (arg1 As Byte()) As Nullable(Of Integer)
Parameters
- arg1
- Byte[]
The character array for which the checksum is calculated.
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Boolean>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<bool> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (bool? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<bool> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Boolean)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<DateTime>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<DateTime> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (DateTime? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<DateTime> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of DateTime)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Decimal>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<System::Decimal> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (decimal? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<decimal> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Decimal)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Double>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<double> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (double? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<double> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Double)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<DateTimeOffset>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<DateTimeOffset> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (DateTimeOffset? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
Parameters
- arg1
- Nullable<DateTimeOffset>
The value for which the checksum is calculated.
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<DateTimeOffset> arg1, Nullable<DateTimeOffset> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (DateTimeOffset? arg1, DateTimeOffset? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of DateTimeOffset), arg2 As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
Parameters
- arg1
- Nullable<DateTimeOffset>
The value for which the checksum is calculated.
- arg2
- Nullable<DateTimeOffset>
The value for which the checksum is calculated.
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<TimeSpan>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<TimeSpan> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (TimeSpan? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<TimeSpan> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of TimeSpan)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(String)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(System::String ^ arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (string arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : string -> Nullable<int>
Public Shared Function Checksum (arg1 As String) As Nullable(Of Integer)
Parameters
- arg1
- String
The value for which the checksum is calculated.
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Byte[], Byte[])
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(cli::array <System::Byte> ^ arg1, cli::array <System::Byte> ^ arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (byte[] arg1, byte[] arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : byte[] * byte[] -> Nullable<int>
Public Shared Function Checksum (arg1 As Byte(), arg2 As Byte()) As Nullable(Of Integer)
Parameters
- arg1
- Byte[]
The character array for which the checksum is calculated.
- arg2
- Byte[]
The character array for which the checksum is calculated.
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Boolean>, Nullable<Boolean>)
Returns the checksum value computed over the input arguments.
public:
static Nullable<int> Checksum(Nullable<bool> arg1, Nullable<bool> arg2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (bool? arg1, bool? arg2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<bool> * Nullable<bool> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Boolean), arg2 As Nullable(Of Boolean)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input values.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).
Applies to
Checksum(Nullable<Guid>)
Returns the checksum value computed over the input argument.
public:
static Nullable<int> Checksum(Nullable<Guid> arg1);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")]
public static int? Checksum (Guid? arg1);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHECKSUM")>]
static member Checksum : Nullable<Guid> -> Nullable<int>
Public Shared Function Checksum (arg1 As Nullable(Of Guid)) As Nullable(Of Integer)
Parameters
Returns
The checksum computed over the input value.
- Attributes
Remarks
You cannot call this function directly. This function can only appear within a LINQ to Entities query.
This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see CHECKSUM (Transact-SQL).