14 references to Primitive
System.Data.Services (14)
System\Data\Services\Providers\EntityPropertyMappingInfo.cs (1)
203if (!resourceProperty.IsOfKind(currentSegment == srcPathSegments.Length - 1 ? ResourcePropertyKind.Primitive : ResourcePropertyKind.ComplexType))
System\Data\Services\Providers\ObjectContextServiceProvider.cs (2)
1411kind = ResourcePropertyKind.Key | ResourcePropertyKind.Primitive; 1415kind = ResourcePropertyKind.Primitive;
System\Data\Services\Providers\ReflectionServiceProvider.cs (4)
666kind = ResourcePropertyKind.Key | ResourcePropertyKind.Primitive; 671kind = ResourcePropertyKind.Key | ResourcePropertyKind.Primitive; 675kind = ResourcePropertyKind.Primitive; 680kind = ResourcePropertyKind.Primitive;
System\Data\Services\Providers\ResourceProperty.cs (4)
250kind != ResourcePropertyKind.Primitive && 251kind != (ResourcePropertyKind.Primitive | ResourcePropertyKind.Key) && 252kind != (ResourcePropertyKind.Primitive | ResourcePropertyKind.ETag)) 275if (IsOfKind(kind, ResourcePropertyKind.Primitive))
System\Data\Services\Providers\ResourceType.cs (1)
1072Debug.Assert(property.IsOfKind(ResourcePropertyKind.Primitive), "This check must have been done in ResourceProperty.ValidatePropertyParameters method");
System\Data\Services\RequestUriProcessor.cs (1)
893Debug.Assert(segment.ProjectedProperty.IsOfKind(ResourcePropertyKind.Primitive), "must be primitive type property");
System\Data\Services\Serializers\MetadataSerializer.cs (1)
559Debug.Assert(resourceProperty.IsOfKind(ResourcePropertyKind.Primitive), "property must be of primitive type");