using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { [Table("payment_delivery_part_bin"), PrimaryKey("Year", "DId", "DPNr", "BinNr", "AvNr")] public class PaymentDeliveryPartBin { [Column("year")] public int Year { get; set; } [Column("did")] public int DId { get; set; } [Column("dpnr")] public int DPNr { get; set; } [Column("binnr")] public int BinNr { get; set; } [Column("avnr")] public int AvNr { get; set; } [Column("price")] public long PriceValue { get; set; } [NotMapped] public decimal Price { get => Variant.Season.DecFromDb(PriceValue); set => PriceValue = Variant.Season.DecToDb(value); } [Column("amount")] public long AmountValue { get; set; } [NotMapped] public decimal Amount { get => Variant.Season.DecFromDb(AmountValue); set => AmountValue = Variant.Season.DecToDb(value); } [ForeignKey("Year, AvNr")] public virtual PaymentVar Variant { get; private set; } [ForeignKey("Year, DId, DPNr")] public virtual DeliveryPart DeliveryPart { get; private set; } } }