[ROOT] / doc / DocFrag / ARAdventureWorksOLAP.FactResellerSaleP.OrderDate / Attribute / PKTypeAttribute
PKTypeAttribute
| Key | Value |
|---|---|
| BoilerplateCodeProperties | // Autogenerated boilerplate code. Paste into your class as needed. public DateTime OrderDate{ get => IP.GetPV<DateTime>(FactResellerSaleP.OrderDate); set => IP.SetPV(FactResellerSaleP.OrderDate, value); } public AddOrderDate(DateTime orderDate) => IP.AddPV(FactResellerSaleP.OrderDate, orderDate); public DateTime? GetOrderDate() => TryGetOrderDate(out var retval) ? retval : null; public DateTime GetOrderDate(DateTime defaultValue) => TryGetOrderDate(out var retval) ? retval : defaultValue; public bool TryGetOrderDate(out DateTime orderDate) => IP.TryGetPV(FactResellerSaleP.OrderDate, out orderDate); |
| Cardinality | HistoryOnly |
| Description | Called 'OrderDateKey' in original sample database |
| EnumMember | OrderDate |
| EnumType | FactResellerSaleP |
| IsObligatory | -False- |
| Type | -DateTime- |
7 items
Generated 2025-10-29 11:38:45.761 UTC