Name

SqlInt64

Synopsis

A structure that represents a 64-bit signed integer that can contain a value ranging from -263 (-9223372036854775808) to 263-1 (9223372036854775807). It maps to the SQL Server bigint data type.

public struct SqlInt64 : INullable, IComparable {

// Public Constructors

   public SqlInt64(long value);  

// Public Static Fields

   public static readonly SqlInt64 MaxValue;          // =9223372036854775807

   public static readonly SqlInt64 MinValue;          // =-9223372036854775808

   public static readonly SqlInt64 Null;              // =Null

   public static readonly SqlInt64 Zero;              // =0

                  // Public Instance Properties

   public bool IsNull{get; }                          // implements INullable

   public long Value{get; } 

// Public Static Methods

   public static SqlInt64 Add(SqlInt64 x, SqlInt64 y);  

   public static SqlInt64 BitwiseAnd(SqlInt64 x, SqlInt64 y);  

   public static SqlInt64 BitwiseOr(SqlInt64 x, SqlInt64 y);  

   public static SqlInt64 Divide(SqlInt64 x, SqlInt64 y);  

   public static SqlBoolean Equals(SqlInt64 x, SqlInt64 y);  

   public static SqlBoolean GreaterThan(SqlInt64 x, SqlInt64 y);

   public static SqlBoolean GreaterThanOrEqual(SqlInt64 x, SqlInt64 y);

   public static SqlBoolean LessThan(SqlInt64 x, SqlInt64 y);  

   public static SqlBoolean LessThanOrEqual(SqlInt64 x, SqlInt64 y);

   public static SqlInt64 Mod(SqlInt64 x, SqlInt64 y);  

   public static SqlInt64 Multiply(SqlInt64 x, SqlInt64 y);  

   public static SqlBoolean NotEquals(SqlInt64 x, SqlInt64 y);

   public static SqlInt64 OnesComplement(SqlInt64 x);  

   public static SqlInt64 operator &(SqlInt64 x, SqlInt64 ...

Get ADO.NET in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.