Implemented interface member:
property
EntitySet
System.Data.IEntityStateEntry.EntitySet
26 references to EntitySet
System.Data.Entity (22)
System\Data\Objects\EntityEntry.cs (11)
158
foreach (var foreignKey in ((EntitySet)
EntitySet
).ForeignKeyDependents)
175
foreach (var foreignKey in ((EntitySet)
EntitySet
).ForeignKeyPrincipals)
890
return new EntityRecordInfo(metadata.DataRecordInfo, _entityKey, (EntitySet)
EntitySet
);
1587
tmpTypeMetadata = _cache.GetOrAddStateManagerTypeMetadata(complexObject.GetType(), (EntitySet)this.
EntitySet
);
2092
Debug.Assert(
EntitySet
is EntitySet, "Expect entity entries to have true entity sets.");
2093
if (!((EntitySet)
EntitySet
).HasForeignKeyRelationships)
2642
(relationshipSet == null || relationshipSet == relationshipEntry.
EntitySet
))
2723
association = (AssociationSet)relationshipEntry.
EntitySet
;
2796
association = (AssociationSet)relationshipEntry.
EntitySet
;
3472
existingPrincipalKey = new EntityKey((EntitySet)existingPrincipalEntry.
EntitySet
, (IExtendedDataRecord)existingPrincipalEntry.CurrentValues);
3691
EntitySet entitySet =
EntitySet
as EntitySet;
System\Data\Objects\ObjectContext.cs (2)
1722
EntitySetBase actualEntitySet = cacheEntry.
EntitySet
;
1772
EntitySetBase actualEntitySet = cacheEntry.
EntitySet
;
System\Data\Objects\ObjectStateManager.cs (8)
457
if (!((EntitySet)newEntry.
EntitySet
).HasForeignKeyRelationships)
648
StateManagerTypeMetadata typeMetadata = GetOrAddStateManagerTypeMetadata(wrappedEntity.IdentityType, (EntitySet)keyEntry.
EntitySet
);
669
wrappedEntity.AttachContext(contextToAttach, (EntitySet)keyEntry.
EntitySet
, MergeOption.AppendOnly);
1393
EntityReference reference = entry.WrappedEntity.RelationshipManager.GetRelatedEndInternal(((AssociationSet)relationshipEntry.
EntitySet
).ElementType.FullName, targetRoleName) as EntityReference;
1969
var entitySet = (EntitySet)entry.
EntitySet
;
1984
newKey = new EntityKey((EntitySet)entry.
EntitySet
, (IExtendedDataRecord)entry.CurrentValues);
2076
EntityKey newKey = new EntityKey(entry.
EntitySet
);
3515
EntityKey permanentRelatedKey = new EntityKey((EntitySet)relatedEntry.
EntitySet
, (IExtendedDataRecord)relatedEntry.CurrentValues);
System\Data\Objects\RelationshipEntry.cs (1)
284
return new DataRecordInfo(TypeUsage.Create(((RelationshipSet)
EntitySet
).ElementType));
System.Data.Services (3)
System\Data\Services\Providers\ObjectContextServiceProvider.cs (3)
2379
entry.
EntitySet
.Name,
2380
entry.
EntitySet
.EntityContainer.Name,
2381
entry.
EntitySet
.EntityContainer.Name == this.ObjectContext.DefaultContainerName);
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceView.cs (1)
407
var elementEntitySet = Context.ObjectStateManager.GetObjectStateEntry(element).
EntitySet
;