Name

SqlSingle

Synopsis

A structure that represents a floating-point value ranging from -3.40E38 to 3.40E38. It maps to the SQL Server real data type.

public struct SqlSingle : INullable, IComparable {

// Public Constructors

   public SqlSingle(double value);  

   public SqlSingle(float value);  

// Public Static Fields

   public static readonly SqlSingle MaxValue;                  // =3.402823E+38

   public static readonly SqlSingle MinValue;                  // =-3.402823E+38

   public static readonly SqlSingle Null;                      // =Null

   public static readonly SqlSingle Zero;                      // =0

                  // Public Instance Properties

   public bool IsNull{get; }                                   // implements INullable

   public float Value{get; } 

// Public Static Methods

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

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

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

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

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

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

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

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

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

   public static SqlSingle Parse(string s);  

   public static SqlSingle Subtract(SqlSingle x, SqlSingle y);

   public static SqlSingle operator *(SqlSingle x, SqlSingle y);

   public static SqlSingle operator /(SqlSingle x, SqlSingle y);

   public static SqlSingle operator -(SqlSingle x); public static SqlSingle ...

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.