Implemented interface member:
property
IsNullable
System.Data.IDataParameter.IsNullable
2 overrides of IsNullable
System.Data (1)
fx\src\Data\System\Data\ProviderBase\DbParameterHelper.cs (1)
81
override public bool
IsNullable
{ // V1.2.3300, XXXParameter V1.0.3300
System.Data.Entity (1)
System\Data\EntityClient\DbParameterHelper.cs (1)
83
override public bool
IsNullable
{
8 writes to IsNullable
System.Data (4)
fx\src\data\System\Data\Odbc\OdbcParameter.cs (1)
127
this.
IsNullable
= isNullable;
fx\src\data\System\Data\OleDb\OleDbParameter.cs (1)
73
IsNullable
= isNullable;
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
3767
paramCopy.
IsNullable
= param.IsNullable;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
140
this.
IsNullable
= isNullable;
System.Data.Entity (3)
System\Data\Common\DbCommandDefinition.cs (1)
73
parameter.
IsNullable
= TypeSemantics.IsNullable(type);
System\Data\EntityClient\EntityCommandDefinition.cs (1)
518
storeParameter.
IsNullable
= entityParameter.IsNullable;
System\Data\SqlClient\SqlProviderServices.cs (1)
397
result.
IsNullable
= isNullable;
System.Web (1)
Security\SQLMembershipProvider.cs (1)
1827
param.
IsNullable
= true;
8 references to IsNullable
System.Data (7)
fx\src\data\System\Data\Odbc\OdbcParameter.cs (2)
1035
if ((ParameterDirection.Input != p.Direction) || p.
IsNullable
1076
p.
IsNullable
, p.PrecisionInternal, p.ScaleInternal, p.SourceColumn,
fx\src\data\System\Data\OleDb\OleDbParameter.cs (2)
582
if ((ParameterDirection.Input != p.Direction) || p.
IsNullable
623
p.
IsNullable
, p.PrecisionInternal, p.ScaleInternal, p.SourceColumn,
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
3767
paramCopy.IsNullable = param.
IsNullable
;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (2)
1796
if ((ParameterDirection.Input != p.Direction) || p.
IsNullable
1841
p.
IsNullable
, p.PrecisionInternal, p.ScaleInternal,
System.Data.Entity (1)
System\Data\SqlClient\SqlProviderServices.cs (1)
396
if (isOutParam || isNullable != result.
IsNullable
) {