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