1 write to attrColumn
System.Data.Linq (1)
Mapping\AttributedMetaModel.cs (1)
1036
this.
attrColumn
= (ColumnAttribute)Attribute.GetCustomAttribute(mi, typeof(ColumnAttribute));
32 references to attrColumn
System.Data.Linq (32)
Mapping\AttributedMetaModel.cs (32)
1038
this.attr = (this.
attrColumn
!= null) ? (DataAttribute)this.
attrColumn
: (DataAttribute)this.attrAssoc;
1048
if (
attrColumn
!= null &&
attrColumn
.IsDbGenerated &&
attrColumn
.IsPrimaryKey) {
1050
if ((
attrColumn
.AutoSync != AutoSync.Default) && (
attrColumn
.AutoSync != AutoSync.OnInsert)) {
1129
get { return this.
attrColumn
!= null || this.attrAssoc != null; }
1135
get { return this.
attrColumn
!= null && this.
attrColumn
.IsPrimaryKey; }
1143
return this.
attrColumn
!= null &&
1144
(this.
attrColumn
.IsDbGenerated || !string.IsNullOrEmpty(
attrColumn
.Expression)) || IsVersion;
1148
get { return this.
attrColumn
!= null && this.
attrColumn
.IsVersion; }
1151
get { return
attrColumn
== null ? false :
attrColumn
.IsDiscriminator; }
1155
if (this.
attrColumn
== null) {
1158
if (!this.
attrColumn
.CanBeNullSet) {
1161
return this.
attrColumn
.CanBeNull;
1166
if (this.
attrColumn
!= null) {
1167
return this.
attrColumn
.DbType;
1174
if (this.
attrColumn
!= null) {
1175
return this.
attrColumn
.Expression;
1182
if (this.
attrColumn
!= null && this.
attrColumn
.Name != null) {
1183
return this.
attrColumn
.Name;
1193
if (this.
attrColumn
!= null) {
1194
return this.
attrColumn
.UpdateCheck;
1201
if (this.
attrColumn
!= null) {
1207
if (
attrColumn
.AutoSync != AutoSync.Default) {
1208
return
attrColumn
.AutoSync;