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