3 references to SqlChars
System.Data.Common (3)
System\Data\Common\SQLConvert.cs (1)
577
return new
SqlChars
(((string)value).ToCharArray());
System\Data\SQLTypes\SQLChars.cs (2)
81
public SqlChars(SqlString value) :
this
(value.IsNull ? null : value.Value.ToCharArray())
548
return new
SqlChars
((char[]?)null);