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