[ROOT] / doc / DocFrag / ARAdventureWorksOLAP.FactFinanceP.Amount / Attribute / PKTypeAttribute

PKTypeAttribute

PKTypeAttribute

KeyValue
BoilerplateCodeProperties// Autogenerated boilerplate code. Paste into your class as needed.
public Double Amount{
get => IP.GetPV<Double>(FactFinanceP.Amount);
set => IP.SetPV(FactFinanceP.Amount, value);
}
public AddAmount(Double amount) => IP.AddPV(FactFinanceP.Amount, amount);
public Double? GetAmount() => TryGetAmount(out var retval) ? retval : null;
public Double GetAmount(Double defaultValue) => TryGetAmount(out var retval) ? retval : defaultValue;
public bool TryGetAmount(out Double amount) => IP.TryGetPV(FactFinanceP.Amount, out amount);


CardinalityHistoryOnly
EnumMemberAmount
EnumTypeFactFinanceP
IsObligatory-False-
TypeDouble

6 items

Edit


Generated 2024-06-26 13:02:10.715 UTC