1 override of IsRuntimeOnlyType
System.Data.Linq (1)
SqlClient\SqlTypeSystemProvider.cs (1)
269
internal override bool
IsRuntimeOnlyType
{
11 references to IsRuntimeOnlyType
System.Data.Linq (11)
SqlClient\Common\SqlFactory.cs (1)
364
System.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)
761
bool isRuntimeOnly1 = sfromType.
IsRuntimeOnlyType
;
762
bool isRuntimeOnly2 = stoType.
IsRuntimeOnlyType
;
1662
if (select.Selection.SqlType.
IsRuntimeOnlyType
&& !IsGrouping(sequence.Type) && !isCount && lambda == null) {
SqlClient\Query\SqlMethodCallConverter.cs (1)
958
if (!expr.SqlType.
IsRuntimeOnlyType
) {
SqlClient\Query\SqlRetyper.cs (3)
171
foreach (SqlWhen when in c.Whens.Where(w => w.Value.SqlType != type && !w.Value.SqlType.
IsRuntimeOnlyType
)) {
175
if (c.Else != null && c.Else.SqlType != type && !c.Else.SqlType.
IsRuntimeOnlyType
) {
193
foreach (SqlWhen when in c.Whens.Where(w => w.Value.SqlType != type && !w.Value.SqlType.
IsRuntimeOnlyType
)) {
SqlClient\SqlProvider.cs (1)
1342
bool isScalar = !pt.
IsRuntimeOnlyType
&& !pt.IsApplicationType;
SqlClient\SqlTypeSystemProvider.cs (2)
1326
if (typeA.IsApplicationType || typeA.
IsRuntimeOnlyType
) {
1329
if (typeB.IsApplicationType || typeB.
IsRuntimeOnlyType
) {