2 overrides of IsSimple
System.Data.Entity (2)
System\Data\Mapping\Update\Internal\PropagatorResult.cs (2)
281
internal override bool
IsSimple
528
internal override bool
IsSimple
12 references to IsSimple
System.Data.Entity (12)
System\Data\Mapping\Update\Internal\Propagator.Evaluator.cs (2)
146
Debug.Assert(null != result && result.
IsSimple
, "Must be a simple Boolean result");
502
if (!childResult.
IsSimple
|| BuiltInTypeKind.PrimitiveType != nodeType.EdmType.BuiltInTypeKind)
System\Data\Mapping\Update\Internal\PropagatorResult.cs (4)
136
/// Returns simple value stored in this result. Only valid when <see cref="
IsSimple
" /> is
147
/// Returns nested value. Only valid when <see cref="
IsSimple
" /> is false.
157
/// Returns nested value. Only valid when <see cref="
IsSimple
" /> is false.
168
/// Returns all structural values. Only valid when <see cref="
IsSimple
" /> is false.
System\Data\Mapping\Update\Internal\SourceInterpreter.cs (1)
93
else if (!source.
IsSimple
&& !source.IsNull)
System\Data\Mapping\Update\Internal\UpdateCommand.cs (1)
164
if (property.
IsSimple
&& property.Identifier != PropagatorResult.NullIdentifier &&
System\Data\Mapping\Update\Internal\UpdateCompiler.cs (4)
217
Debug.Assert(propertyResult.
IsSimple
);
302
Debug.Assert(originalPropertyResult.
IsSimple
, "Server Gen property that is not primitive?");
303
Debug.Assert(propertyResult.
IsSimple
, "Server Gen property that is not primitive?");
437
Debug.Assert(null != value && value.
IsSimple
&& null != property);