1 write to attrAssoc
System.Data.Linq (1)
Mapping\AttributedMetaModel.cs (1)
1037
this.
attrAssoc
= (AssociationAttribute)Attribute.GetCustomAttribute(mi, typeof(AssociationAttribute));
7 references to attrAssoc
System.Data.Linq (7)
Mapping\AttributedMetaModel.cs (7)
1038
this.attr = (this.attrColumn != null) ? (DataAttribute)this.attrColumn : (DataAttribute)this.
attrAssoc
;
1129
get { return this.attrColumn != null || this.
attrAssoc
!= null; }
1132
get { return this.
attrAssoc
!= null; }
1185
if (this.
attrAssoc
!= null && this.
attrAssoc
.Name != null) {
1186
return this.
attrAssoc
.Name;
1226
this.assoc = new AttributedMetaAssociation(this, this.
attrAssoc
);