1 write to member
System.Data.Linq (1)
DataServices.cs (1)
309this.member = member;
15 references to member
System.Data.Linq (15)
DataServices.cs (15)
311this.refersToPrimaryKey = this.member.IsAssociation && this.member.Association.OtherKeyIsPrimaryKey; 329if (this.member.IsAssociation) { 330keys = this.member.Association.ThisKey; 333keys = this.member.DeclaringType.IdentityMembers; 350if (this.member.LoadMethod != null) { 352object result = this.member.LoadMethod.Invoke(this.services.Context, new object[] { instance }); 353if (typeof(T).IsAssignableFrom(this.member.LoadMethod.ReturnType)) { 402MetaType mt = this.member.IsAssociation ? this.member.Association.OtherType : this.member.DeclaringType; 416ReadOnlyCollection<MetaDataMember> members = this.member.IsAssociation ? this.member.Association.OtherKey : this.member.DeclaringType.IdentityMembers; 426Expression q = this.services.GetDataMemberQuery(this.member, keyExprs);