2 instantiations of RelatedItem
System.Data.Linq (2)
DataServices.cs (2)
82yield return new RelatedItem(otherType.GetInheritanceType(otherItem.GetType()), otherItem); 86yield return new RelatedItem(otherType.GetInheritanceType(value.GetType()), value);
9 references to RelatedItem
System.Data.Linq (9)
ChangeProcessor.cs (4)
404foreach (RelatedItem parent in this.services.GetParents(type, item)) { 453foreach (RelatedItem child in this.services.GetChildren(type, item)) { 481foreach (RelatedItem parent in this.services.GetParents(type, item)) { 493foreach (RelatedItem child in this.services.GetChildren(type, item)) {
ChangeTracker.cs (2)
110foreach (RelatedItem parent in this.services.GetParents(mt, obj)) { 115foreach (RelatedItem child in this.services.GetChildren(mt, obj)) {
DataServices.cs (3)
58internal IEnumerable<RelatedItem> GetParents(MetaType type, object item) { 62internal IEnumerable<RelatedItem> GetChildren(MetaType type, object item) { 66private IEnumerable<RelatedItem> GetRelations(MetaType type, object item, bool isForeignKey) {