[ROOT] / doc / DocFrag / ARAdventureWorksOLAP.FactInternetSaleP.ShipDate / Attribute / PKTypeAttribute

PKTypeAttribute

PKTypeAttribute

KeyValue
BoilerplateCodeProperties// Autogenerated boilerplate code. Paste into your class as needed.
public DateTime ShipDate{
get => IP.GetPV<DateTime>(FactInternetSaleP.ShipDate);
set => IP.SetPV(FactInternetSaleP.ShipDate, value);
}
public AddShipDate(DateTime shipDate) => IP.AddPV(FactInternetSaleP.ShipDate, shipDate);
public DateTime? GetShipDate() => TryGetShipDate(out var retval) ? retval : null;
public DateTime GetShipDate(DateTime defaultValue) => TryGetShipDate(out var retval) ? retval : defaultValue;
public bool TryGetShipDate(out DateTime shipDate) => IP.TryGetPV(FactInternetSaleP.ShipDate, out shipDate);


CardinalityHistoryOnly
DescriptionCalled 'ShipDateKey' in original sample database (link to DimDate)
EnumMemberShipDate
EnumTypeFactInternetSaleP
IsObligatory-False-
Type-DateTime-

7 items

Edit


Generated 2024-06-01 22:05:23.808 UTC