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