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

PKTypeAttribute

PKTypeAttribute

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


CardinalityHistoryOnly
EnumMemberPostalCode
EnumTypeDimGeographyP
IsObligatory-False-
Type-String-

6 items

Edit


Generated 2025-07-09 04:40:07.055 UTC