2 overrides of OtherKey
System.Data.Linq (2)
Mapping\AttributedMetaModel.cs (1)
1386public override ReadOnlyCollection<MetaDataMember> OtherKey {
Mapping\MappedMetaModel.cs (1)
1292public override ReadOnlyCollection<MetaDataMember> OtherKey {
8 references to OtherKey
System.Data.Linq (7)
ChangeTracker.cs (2)
579MetaDataMember accParent = assoc.OtherKey[i]; 828MetaDataMember otherMember = assoc.OtherKey[index];
DataServices.cs (1)
416ReadOnlyCollection<MetaDataMember> members = this.member.IsAssociation ? this.member.Association.OtherKey : this.member.DeclaringType.IdentityMembers;
SqlClient\Query\Translator.cs (3)
161return WhereClauseFromSourceAndKeys(otherSource, association.OtherKey.ToArray(), keyValues); 227return WhereClauseFromSourceAndKeys(this.otherSouce, this.association.OtherKey.ToArray(), keyValues); 253MetaDataMember metaMember = mm.Association.OtherKey[i];
SqlClient\SqlBuilder.cs (1)
161string otherKey = BuildKey(assoc.OtherKey);
System.Web.DynamicData (1)
DynamicData\ModelProviders\DLinqAssociationProvider.cs (1)
35MetaDataMember otherKeyMetaDataMember = column.Member.Association.OtherKey[i];