1 override of GetBoxedValue
System.Data.Linq (1)
Mapping\MetaModel.cs (1)
551public override object GetBoxedValue(object instance) {
35 references to GetBoxedValue
System.Data.Linq (35)
ChangeConflicts.cs (5)
317object oValue = member.StorageAccessor.GetBoxedValue(this.original); 321object dValue = member.StorageAccessor.GetBoxedValue(this.database); 387this.originalValue = metaMember.StorageAccessor.GetBoxedValue(conflict.Original); 388this.databaseValue = metaMember.StorageAccessor.GetBoxedValue(conflict.Database); 389this.currentValue = metaMember.StorageAccessor.GetBoxedValue(conflict.TrackedObject.Current);
ChangeDirector.cs (2)
303syncRollbackValues[idx] = accessor.GetBoxedValue(current); 365object memberValue = mm.MemberAccessor.GetBoxedValue(tracked.Original);
ChangeProcessor.cs (4)
182System.Collections.IList collection = assoc.OtherMember.MemberAccessor.GetBoxedValue(cached) as System.Collections.IList; 507other = assoc.ThisMember.MemberAccessor.GetBoxedValue(instance); 623object xValue = mm.StorageAccessor.GetBoxedValue(x.Current); 624object yValue = mm.StorageAccessor.GetBoxedValue(y.Current);
ChangeTracker.cs (19)
316assoc.ThisMember.StorageAccessor.GetBoxedValue(Current) == null) { 451object freshValue = mm.StorageAccessor.GetBoxedValue(freshInstance); 497object currentValue = mm.StorageAccessor.GetBoxedValue(this.current); 537object value = mm.DeferredValueAccessor.GetBoxedValue(instance); 548object value = mm.StorageAccessor.GetBoxedValue(instance); 574object parent = mm.StorageAccessor.GetBoxedValue(this.current); 580object parentValue = accParent.StorageAccessor.GetBoxedValue(parent); 586if (mm.IsDeferred || (this.original != null && mm.MemberAccessor.GetBoxedValue(this.original) != null)) { 592if (accThis.StorageAccessor.GetBoxedValue(this.current) != null) { 623object currentDiscriminator = type.Discriminator.MemberAccessor.GetBoxedValue(this.current); 625object dbDiscriminator = type.Discriminator.MemberAccessor.GetBoxedValue(this.original); 661object baseline = mm.MemberAccessor.GetBoxedValue(this.original); 662object currentValue = mm.MemberAccessor.GetBoxedValue(this.current); 693object currentValue = mm.MemberAccessor.GetBoxedValue(this.current); 695object originalValue = mm.MemberAccessor.GetBoxedValue(this.original); 742IEnumerable loader = (IEnumerable)dsacc.GetBoxedValue(this.current); 773IEnumerable loader = (IEnumerable)dsacc.GetBoxedValue(this.current); 814otherItem = assoc.ThisMember.DeferredValueAccessor.GetBoxedValue(this.current); 817otherItem = assoc.ThisMember.StorageAccessor.GetBoxedValue(this.current);
DataServices.cs (5)
73value = mm.DeferredValueAccessor.GetBoxedValue(item); 76value = mm.StorageAccessor.GetBoxedValue(item); 105keyValues.Add(mm.MemberAccessor.GetBoxedValue(instance)); 113keyValues.Add(mm.MemberAccessor.GetBoxedValue(instance)); 337object value = keys[i].StorageAccessor.GetBoxedValue(instance);