[ROOT] / doc / DocFrag / ARAdventureWorksOLAP.DimGeographyP.CountryCode / Attribute / PKTypeAttribute

PKTypeAttribute

PKTypeAttribute

KeyValue
BoilerplateCodeProperties// Autogenerated boilerplate code. Paste into your class as needed.
public String CountryCode{
get => IP.GetPV<String>(DimGeographyP.CountryCode);
set => IP.SetPV(DimGeographyP.CountryCode, value);
}
public AddCountryCode(String countryCode) => IP.AddPV(DimGeographyP.CountryCode, countryCode);
public String? GetCountryCode() => TryGetCountryCode(out var retval) ? retval : null;
public String GetCountryCode(String defaultValue) => TryGetCountryCode(out var retval) ? retval : defaultValue;
public bool TryGetCountryCode(out String countryCode) => IP.TryGetPV(DimGeographyP.CountryCode, out countryCode);


CardinalityHistoryOnly
DescriptionCalled 'CountryRegionCode' in original sample database
EnumMemberCountryCode
EnumTypeDimGeographyP
IsObligatory-False-
Type-String-

7 items

Edit


Generated 2024-06-01 21:11:44.880 UTC