2 overrides of IsSimple
System.Data.Entity (2)
System\Data\Mapping\Update\Internal\PropagatorResult.cs (2)
281internal override bool IsSimple 528internal override bool IsSimple
12 references to IsSimple
System.Data.Entity (12)
System\Data\Mapping\Update\Internal\Propagator.Evaluator.cs (2)
146Debug.Assert(null != result && result.IsSimple, "Must be a simple Boolean result"); 502if (!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)
93else if (!source.IsSimple && !source.IsNull)
System\Data\Mapping\Update\Internal\UpdateCommand.cs (1)
164if (property.IsSimple && property.Identifier != PropagatorResult.NullIdentifier &&
System\Data\Mapping\Update\Internal\UpdateCompiler.cs (4)
217Debug.Assert(propertyResult.IsSimple); 302Debug.Assert(originalPropertyResult.IsSimple, "Server Gen property that is not primitive?"); 303Debug.Assert(propertyResult.IsSimple, "Server Gen property that is not primitive?"); 437Debug.Assert(null != value && value.IsSimple && null != property);