18 references to SqlType
System.Data.Linq (18)
SqlClient\SqlTypeSystemProvider.cs (18)
79return new SqlType(type); 144static private readonly SqlType theBigInt = new SqlType(SqlDbType.BigInt); 145static private readonly SqlType theBit = new SqlType(SqlDbType.Bit); 146static private readonly SqlType theChar = new SqlType(SqlDbType.Char); 147static private readonly SqlType theDateTime = new SqlType(SqlDbType.DateTime); 148static private readonly SqlType theDate = new SqlType(SqlDbType.Date); 149static private readonly SqlType theTime = new SqlType(SqlDbType.Time); 150static private readonly SqlType theDateTime2 = new SqlType(SqlDbType.DateTime2); 151static private readonly SqlType theDateTimeOffset = new SqlType(SqlDbType.DateTimeOffset); 155static private readonly SqlType theFloat = new SqlType(SqlDbType.Float); 156static private readonly SqlType theInt = new SqlType(SqlDbType.Int); 158static private readonly SqlType theReal = new SqlType(SqlDbType.Real); 159static private readonly SqlType theUniqueIdentifier = new SqlType(SqlDbType.UniqueIdentifier); 160static private readonly SqlType theSmallDateTime = new SqlType(SqlDbType.SmallDateTime); 161static private readonly SqlType theSmallInt = new SqlType(SqlDbType.SmallInt); 163static private readonly SqlType theTimestamp = new SqlType(SqlDbType.Timestamp); 164static private readonly SqlType theTinyInt = new SqlType(SqlDbType.TinyInt); 259return new SqlType(SqlDbType.Text);