2 overrides of OtherKeyIsPrimaryKey
System.Data.Linq (2)
Mapping\AttributedMetaModel.cs (1)
1392public override bool OtherKeyIsPrimaryKey {
Mapping\MappedMetaModel.cs (1)
1313public override bool OtherKeyIsPrimaryKey {
5 references to OtherKeyIsPrimaryKey
System.Data.Linq (3)
ChangeProcessor.cs (2)
169if (assoc.OtherMember != null && assoc.OtherKeyIsPrimaryKey) { 509else if (assoc.OtherKeyIsPrimaryKey) {
DataServices.cs (1)
311this.refersToPrimaryKey = this.member.IsAssociation && this.member.Association.OtherKeyIsPrimaryKey;
System.Web.DynamicData (2)
DynamicData\ModelProviders\DLinqAssociationProvider.cs (2)
58if (Direction == AssociationDirection.ManyToOne && !association.OtherKeyIsPrimaryKey) { 68if (association.IsForeignKey && !association.OtherKeyIsPrimaryKey) {