2 implementations of ISchemaElementLookUpTable
System.Data.Entity (2)
System\Data\EntityModel\SchemaObjectModel\FilteredSchemaElementLookUpTable.cs (1)
19internal sealed class FilteredSchemaElementLookUpTable<T,S> : IEnumerable<T>, ISchemaElementLookUpTable<T>
System\Data\EntityModel\SchemaObjectModel\SchemaElementLookUpTable.cs (1)
21internal sealed class SchemaElementLookUpTable<T> : IEnumerable<T>, ISchemaElementLookUpTable<T>
10 references to ISchemaElementLookUpTable
System.Data.Entity (10)
System\Data\EntityModel\SchemaObjectModel\EntityContainer.cs (6)
29private ISchemaElementLookUpTable<EntityContainerEntitySet> _entitySets; 30private ISchemaElementLookUpTable<EntityContainerRelationshipSet> _relationshipSets; 31private ISchemaElementLookUpTable<Function> _functionImports; 74public ISchemaElementLookUpTable<EntityContainerEntitySet> EntitySets 89public ISchemaElementLookUpTable<EntityContainerRelationshipSet> RelationshipSets 104public ISchemaElementLookUpTable<Function> FunctionImports
System\Data\EntityModel\SchemaObjectModel\ItemType.cs (2)
25private ISchemaElementLookUpTable<NavigationProperty> _navigationProperties = null; 156public ISchemaElementLookUpTable<NavigationProperty> NavigationProperties
System\Data\EntityModel\SchemaObjectModel\StructuredType.cs (2)
30private ISchemaElementLookUpTable<StructuredProperty> _properties = null; 57public ISchemaElementLookUpTable<StructuredProperty> Properties