2 writes to canBeNull
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
338
set { this.
canBeNull
= value; }
346
set { this.
canBeNull
= (value != null) ? bool.Parse(value) : true; }
3 references to canBeNull
System.Data.Linq (3)
parent\DbmlShared\Mapping.cs (3)
337
get { return this.
canBeNull
; }
343
if (this.
canBeNull
== null) return null;
344
return this.
canBeNull
== true ? null : XmlMappingConstant.False;