2 writes to isPrimaryKey
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
356set { this.isPrimaryKey = value; } 361set { this.isPrimaryKey = (value != null) ? bool.Parse(value) : false; }
2 references to isPrimaryKey
System.Data.Linq (2)
parent\DbmlShared\Mapping.cs (2)
355get { return this.isPrimaryKey; } 360get { return this.isPrimaryKey ? XmlMappingConstant.True : null; }