2 writes to isInheritanceDefault
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
280set { this.isInheritanceDefault = value; } 285set { this.isInheritanceDefault = (value != null) ? bool.Parse(value) : false; }
2 references to isInheritanceDefault
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
279get { return this.isInheritanceDefault; } 284get { return this.isInheritanceDefault ? XmlMappingConstant.True : null; }