3 instantiations of ExtentKey
System.Data.Entity (3)
System\Data\Mapping\ViewGeneration\Validation\BasicCellRelation.cs (1)
126ExtentKey key = new ExtentKey(associationKeyMembers);
System\Data\Mapping\ViewGeneration\Validation\ExtentKey.cs (2)
73ExtentKey key = new ExtentKey(keyFields); 90ExtentKey key = new ExtentKey(keyFields);
38 references to ExtentKey
System.Data.Entity (38)
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (7)
463List<ExtentKey> keys = new List<ExtentKey>(1); 471List<ExtentKey> entitySetKeys = ExtentKey.GetKeysForEntityType(prefix, entityType); 487List<ExtentKey> endKeys = ExtentKey.GetKeysForEntityType(prefix, 501ExtentKey key = keys[i];
System\Data\Mapping\ViewGeneration\Structures\MemberProjectedSlot.cs (2)
149List<ExtentKey> keys = ExtentKey.GetKeysForEntityType(prefix, entitySet.ElementType);
System\Data\Mapping\ViewGeneration\Validation\BasicCellRelation.cs (9)
80List<ExtentKey> keys = ExtentKey.GetKeysForEntityType(prefix, entityType); 108List<ExtentKey> keys = ExtentKey.GetKeysForEntityType(prefix, end.EntitySet.ElementType); 126ExtentKey key = new ExtentKey(associationKeyMembers); 127ExtentKey[] keys = new ExtentKey[] { key }; 134private void AddKeyConstraints(IEnumerable<ExtentKey> keys, BasicSchemaConstraints constraints) 136foreach (ExtentKey key in keys)
System\Data\Mapping\ViewGeneration\Validation\ExtentKey.cs (9)
50internal static List<ExtentKey> GetKeysForEntityType(MemberPath prefix, EntityType entityType) 54ExtentKey key = GetPrimaryKeyForEntityType(prefix, entityType); 56List<ExtentKey> keys = new List<ExtentKey>(); 63internal static ExtentKey GetPrimaryKeyForEntityType(MemberPath prefix, EntityType entityType) 73ExtentKey key = new ExtentKey(keyFields); 79internal static ExtentKey GetKeyForRelationType(MemberPath prefix, AssociationType relationType) 87ExtentKey primaryKey = GetPrimaryKeyForEntityType(endPrefix, entityType); 90ExtentKey key = new ExtentKey(keyFields);
System\Data\Mapping\ViewGeneration\Validation\ForeignConstraint.cs (4)
264ExtentKey primaryKey = ExtentKey.GetPrimaryKeyForEntityType(prefix, ChildTable.ElementType); 588ExtentKey primaryKey = ExtentKey.GetPrimaryKeyForEntityType(prefix, relationEnd.EntitySet.ElementType);
System\Data\Mapping\ViewGeneration\Validation\ViewKeyConstraint.cs (7)
111ExtentKey tableKey = ExtentKey.GetPrimaryKeyForEntityType(tablePrefix, (EntityType)table.ElementType); 112ExtentKey cSetKey = null; 115cSetKey = ExtentKey.GetPrimaryKeyForEntityType(cSetPrefix, (EntityType)cSet.ElementType); 119cSetKey = ExtentKey.GetKeyForRelationType(cSetPrefix, (AssociationType)cSet.ElementType); 159ExtentKey tableKey = ExtentKey.GetPrimaryKeyForEntityType(tablePrefix, (EntityType)table.ElementType);