1 instantiation of SchemaEntityType
System.Data.Entity (1)
System\Data\EntityModel\SchemaObjectModel\Schema.cs (1)
1049SchemaEntityType itemType = new SchemaEntityType(this);
41 references to SchemaEntityType
System.Data.Entity (41)
System\Data\EntityModel\SchemaObjectModel\EntityContainer.cs (10)
361Dictionary<SchemaEntityType, EntityContainerEntitySet> baseEntitySetTypes = new Dictionary<SchemaEntityType, EntityContainerEntitySet>(); 375SchemaEntityType itemType = type as SchemaEntityType; 426private static bool TypeIsSubTypeOf(SchemaEntityType itemType, Dictionary<SchemaEntityType, EntityContainerEntitySet> baseEntitySetTypes, out EntityContainerEntitySet set) 436for (SchemaEntityType baseType = itemType.BaseType as SchemaEntityType; baseType != null; baseType = baseType.BaseType as SchemaEntityType) 449private static bool TypeDefinesNewConcurrencyProperties(SchemaEntityType itemType)
System\Data\EntityModel\SchemaObjectModel\EntityContainerEntitySet.cs (3)
22private SchemaEntityType _entityType = null; 46public SchemaEntityType EntityType 218_entityType = type as SchemaEntityType;
System\Data\EntityModel\SchemaObjectModel\EntityKeyElement.cs (3)
30public EntityKeyElement( SchemaEntityType parentElement ) 73PropertyRefElement property = new PropertyRefElement((SchemaEntityType)ParentElement); 86if (!property.ResolveNames((SchemaEntityType)this.ParentElement))
System\Data\EntityModel\SchemaObjectModel\FunctionImportElement.cs (4)
193if (type is SchemaEntityType && returnTypeCollectionKind == CollectionKind.Bag) return true; 198if (type is SchemaEntityType && returnTypeCollectionKind == CollectionKind.None) return true; 225SchemaEntityType entityType = returnType as SchemaEntityType;
System\Data\EntityModel\SchemaObjectModel\IRelationshipEnd.cs (1)
28SchemaEntityType Type { get; }
System\Data\EntityModel\SchemaObjectModel\ItemType.cs (3)
54if (!(BaseType is SchemaEntityType)) 143System.Diagnostics.Debug.Assert(BaseType is SchemaEntityType, "ItemType.BaseType is not ItemType"); 144return (BaseType as SchemaEntityType).KeyProperties;
System\Data\EntityModel\SchemaObjectModel\KeyProperty.cs (1)
66internal bool ResolveNames(SchemaEntityType entityType)
System\Data\EntityModel\SchemaObjectModel\NavigationProperty.cs (3)
34public NavigationProperty(SchemaEntityType parent) 42public new SchemaEntityType ParentElement 46return base.ParentElement as SchemaEntityType;
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraint.cs (1)
245private static void IsKeyProperty(ReferentialConstraintRoleElement roleElement, SchemaEntityType itemType,
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraintRoleElement.cs (1)
134if (!property.ResolveNames((SchemaEntityType)_end.Type))
System\Data\EntityModel\SchemaObjectModel\RelationshipEnd.cs (3)
24private SchemaEntityType _type; 39public SchemaEntityType Type 94Type = element as SchemaEntityType;
System\Data\EntityModel\SchemaObjectModel\Schema.cs (1)
1049SchemaEntityType itemType = new SchemaEntityType(this);
System\Data\EntityModel\SchemaObjectModel\ValidationHelper.cs (1)
98if (type != null && !(type is SchemaEntityType))
System\Data\Metadata\Converter.cs (6)
138foreach (Som.SchemaEntityType element in somSchema.SchemaTypes.OfType<Som.SchemaEntityType>()) 203else if (element is Som.SchemaEntityType) 205item = ConvertToEntityType((Som.SchemaEntityType)element, 315private static EntityType ConvertToEntityType(Som.SchemaEntityType element, 370private static void LoadEntityTypePhase2(Som.SchemaEntityType element,