6 instantiations of DbObjectKey
System.Data.Entity.Design (6)
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (4)
517
DbObjectKey currentFunction = new
DbObjectKey
();
900
DbObjectKey pkKey = new
DbObjectKey
(row[table.PKCatalogColumn],
903
DbObjectKey fkKey = new
DbObjectKey
(row[table.FKCatalogColumn],
1102
DbObjectKey currentKey = new
DbObjectKey
();
System\Data\Entity\Design\SSDLGenerator\FunctionDetailsReader.cs (1)
149
return new EntityStoreSchemaGenerator.
DbObjectKey
(this.Catalog, this.Schema, this.ProcedureName, EntityStoreSchemaGenerator.DbObjectType.Function);
System\Data\Entity\Design\SSDLGenerator\TableDetailsRow.cs (1)
443
return new EntityStoreSchemaGenerator.
DbObjectKey
(
45 references to DbObjectKey
System.Data.Entity.Design (45)
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (18)
464
DbObjectKey
key = session.GetKey(entitySet.ElementType);
478
DbObjectKey
key = session.GetKey(type);
517
DbObjectKey
currentFunction = new DbObjectKey();
521
DbObjectKey
rowFunction = reader.CreateDbObjectKey();
541
private void CreateEdmFunction(LoadMethodSessionState session,
DbObjectKey
functionKey, List<FunctionDetailsReader.Memento> parameters)
900
DbObjectKey
pkKey = new DbObjectKey(row[table.PKCatalogColumn],
903
DbObjectKey
fkKey = new DbObjectKey(row[table.FKCatalogColumn],
1102
DbObjectKey
currentKey = new DbObjectKey();
1107
DbObjectKey
rowKey = row.CreateDbObjectKey(objectType);
1155
DbObjectKey
tableKey = columns[0].CreateDbObjectKey(objectType);
1282
DbObjectKey
tableKey = columns[0].CreateDbObjectKey(objectType);
1304
DbObjectKey
tableKey,
1349
DbObjectKey
key = row.CreateDbObjectKey(tableKey.ObjectType);
1373
DbObjectKey
key = row.CreateDbObjectKey(tableKey.ObjectType);
1402
DbObjectKey
key = row.CreateDbObjectKey(tableKey.ObjectType);
1430
DbObjectKey
key = row.CreateDbObjectKey(tableKey.ObjectType);
1466
private bool InferKeyColumns(LoadMethodSessionState session, IList<TableDetailsRow> columns, List<string> pKeys,
DbObjectKey
tableKey, ref ICollection<string> primaryKeys)
1524
DbObjectKey
key = session.GetKey(entityType);
System\Data\Entity\Design\EntityStoreSchemaGenerator\EntityStoreSchemaGenerator.DbObjectKey.cs (7)
64
public static bool operator ==(
DbObjectKey
lhs,
DbObjectKey
rhs)
68
public static bool operator !=(
DbObjectKey
lhs,
DbObjectKey
rhs)
94
if (!(obj is
DbObjectKey
))
99
DbObjectKey
key = (
DbObjectKey
)obj;
System\Data\Entity\Design\EntityStoreSchemaGenerator\EntityStoreSchemaGenerator.LoadMethodSessionState.cs (18)
36
private Dictionary<
DbObjectKey
, EntityType> _entityLookup = new Dictionary<
DbObjectKey
, EntityType>();
37
private Dictionary<EntityType,
DbObjectKey
> _reverseEntityLookup = new Dictionary<EntityType,
DbObjectKey
>();
38
private HashSet<
DbObjectKey
> _missingEntities = new HashSet<
DbObjectKey
>();
39
private HashSet<
DbObjectKey
> _tablesWithoutKeys = new HashSet<
DbObjectKey
>();
40
private Dictionary<
DbObjectKey
, RowType> _tvfReturnTypeLookup = new Dictionary<
DbObjectKey
, RowType>();
64
public void AddTableWithoutKey(
DbObjectKey
tableKey)
69
public bool ContainsTableWithoutKey(
DbObjectKey
tableKey)
80
public void AddEntity(
DbObjectKey
key, EntityType type)
91
public bool TryGetEntity(
DbObjectKey
key, out EntityType type)
116
public
DbObjectKey
GetKey(EntityType type)
118
DbObjectKey
key;
124
public void AddTvfReturnType(
DbObjectKey
key, RowType type)
129
public bool TryGetTvfReturnType(
DbObjectKey
key, out RowType type)
System\Data\Entity\Design\SSDLGenerator\FunctionDetailsReader.cs (1)
146
internal EntityStoreSchemaGenerator.
DbObjectKey
CreateDbObjectKey()
System\Data\Entity\Design\SSDLGenerator\TableDetailsRow.cs (1)
441
public EntityStoreSchemaGenerator.
DbObjectKey
CreateDbObjectKey(EntityStoreSchemaGenerator.DbObjectType objectType)