1 override of IsRuntimeOnlyType
System.Data.Linq (1)
SqlClient\SqlTypeSystemProvider.cs (1)
269internal override bool IsRuntimeOnlyType {
11 references to IsRuntimeOnlyType
System.Data.Linq (11)
SqlClient\Common\SqlFactory.cs (1)
364System.Diagnostics.Debug.Assert(!targetSqlType.IsRuntimeOnlyType, "Attempted coversion to a runtime type: from = " + expression.SqlType.ToQueryString() + "; to = " + targetSqlType.ToQueryString() + "; source = " + sourceExpression.ToString());
SqlClient\Query\QueryConverter.cs (3)
761bool isRuntimeOnly1 = sfromType.IsRuntimeOnlyType; 762bool isRuntimeOnly2 = stoType.IsRuntimeOnlyType; 1662if (select.Selection.SqlType.IsRuntimeOnlyType && !IsGrouping(sequence.Type) && !isCount && lambda == null) {
SqlClient\Query\SqlMethodCallConverter.cs (1)
958if (!expr.SqlType.IsRuntimeOnlyType) {
SqlClient\Query\SqlRetyper.cs (3)
171foreach (SqlWhen when in c.Whens.Where(w => w.Value.SqlType != type && !w.Value.SqlType.IsRuntimeOnlyType)) { 175if (c.Else != null && c.Else.SqlType != type && !c.Else.SqlType.IsRuntimeOnlyType) { 193foreach (SqlWhen when in c.Whens.Where(w => w.Value.SqlType != type && !w.Value.SqlType.IsRuntimeOnlyType)) {
SqlClient\SqlProvider.cs (1)
1342bool isScalar = !pt.IsRuntimeOnlyType && !pt.IsApplicationType;
SqlClient\SqlTypeSystemProvider.cs (2)
1326if (typeA.IsApplicationType || typeA.IsRuntimeOnlyType) { 1329if (typeB.IsApplicationType || typeB.IsRuntimeOnlyType) {