Base:
property
Type
System.Data.EntityModel.SchemaObjectModel.Property.Type
12 references to Type
System.Data.Entity (12)
System\Data\EntityModel\SchemaObjectModel\EntityContainer.cs (1)
453
if (property.
Type
is ScalarType && MetadataHelper.GetConcurrencyMode(property.TypeUsage) != ConcurrencyMode.None)
System\Data\EntityModel\SchemaObjectModel\EntityKeyElement.cs (3)
122
if (!(property.
Type
is ScalarType || property.
Type
is SchemaEnumType) || (property.CollectionKind != CollectionKind.None))
131
if (!(property.
Type
is SchemaEnumType))
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraint.cs (2)
198
if (_dependentRole.RoleProperties[i].Property.
Type
!= _principalRole.RoleProperties[i].Property.
Type
)
System\Data\EntityModel\SchemaObjectModel\StructuredProperty.cs (3)
154
Debug.Assert(
Type
is SchemaEnumType);
155
EdmType propertyType = (EdmType)Converter.LoadSchemaElement(
Type
,
Type
.Schema.ProviderManifest, convertedItemCache, newGlobalItems);
System\Data\Metadata\Converter.cs (3)
717
Som.ScalarType scalarType = somProperty.
Type
as Som.ScalarType;
737
propertyType = (EdmType)LoadSchemaElement(somProperty.
Type
, providerManifest, convertedItemCache, newGlobalItems);
746
Som.SchemaEnumType enumType = scalarType == null ? somProperty.
Type
as Som.SchemaEnumType : null;