24 references to NullString
System.Data (24)
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (1)
159return IsNull ? SQLResource.NullString : "SqlBinary(" + m_value.Length.ToString(CultureInfo.InvariantCulture) + ")";
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (2)
243return IsNull ? SQLResource.NullString : Value.ToString((IFormatProvider)null); 253if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLByte.cs (2)
110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 117if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (2)
341return SQLResource.NullString; 349if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (2)
928return SQLResource.NullString; 995if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (2)
113return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 120if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (2)
150return SQLResource.NullString; 160if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (2)
109return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 116if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (2)
110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 117if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (2)
110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 117if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (2)
250return SQLResource.NullString; 276if ( s == SQLResource.NullString) {
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (2)
115return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 122if (s == SQLResource.NullString)
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
360return IsNull ? SQLResource.NullString : m_value;