[ROOT] / doc / DocFrag / ARAdventureWorksOLAP.DimSalesTerritoryP.Country / Attribute / PKTypeAttribute
PKTypeAttribute
Key | Value |
---|---|
BoilerplateCodeProperties | // Autogenerated boilerplate code. Paste into your class as needed. public String Country{ get => IP.GetPV<String>(DimSalesTerritoryP.Country); set => IP.SetPV(DimSalesTerritoryP.Country, value); } public AddCountry(String country) => IP.AddPV(DimSalesTerritoryP.Country, country); public String? GetCountry() => TryGetCountry(out var retval) ? retval : null; public String GetCountry(String defaultValue) => TryGetCountry(out var retval) ? retval : defaultValue; public bool TryGetCountry(out String country) => IP.TryGetPV(DimSalesTerritoryP.Country, out country); |
Cardinality | HistoryOnly |
Description | Called 'SalesTerritoryCountry' in original sample database |
EnumMember | Country |
EnumType | DimSalesTerritoryP |
IsObligatory | -False- |
Type | -String- |
7 items
Generated 2025-07-09 18:54:10.375 UTC