1 override of IsLargeType
System.Data.Linq (1)
SqlClient\SqlTypeSystemProvider.cs (1)
401
internal override bool
IsLargeType
{
11 references to IsLargeType
System.Data.Linq (11)
SqlClient\Query\LongTypeConverter.cs (3)
46
if (!expr.SqlType.
IsLargeType
)
63
containsLongExpressions = containsLongExpressions || col.SqlType.
IsLargeType
;
109
if (fc.Arguments[0].SqlType.
IsLargeType
) {
SqlClient\Query\SqlMethodTransformer.cs (1)
28
if (expr.SqlType.
IsLargeType
&& !expr.SqlType.SupportsLength) {
SqlClient\Query\SqlParameterizer.cs (1)
223
if (!node.SqlType.
IsLargeType
) {
SqlClient\Query\SqlTypeConverter.cs (2)
54
bool result = newSqlType.
IsLargeType
// we can fit into a large type
56
|| (!oldSqlType.
IsLargeType
// else, if the old type isn't large
SqlClient\SqlTypeSystemProvider.cs (4)
1077
if (operandType.
IsLargeType
) {
1119
if ((!leftType.
IsLargeType
&& leftType.Size.HasValue) &&
1120
(!rightType.
IsLargeType
&& rightType.Size.HasValue))
1125
if ((concatSize < concatType.Size) || concatType.
IsLargeType
)