[WIP] Models/Entities: Remove EF proxies
Some checks failed
Test / Run tests (push) Failing after 2m45s
Some checks failed
Test / Run tests (push) Failing after 2m45s
This commit is contained in:
@@ -184,7 +184,7 @@ namespace Elwig.Models.Entities {
|
||||
public virtual ICollection<DeliveryPartModifier> PartModifiers { get; private set; } = null!;
|
||||
|
||||
[NotMapped]
|
||||
public IEnumerable<Modifier> Modifiers => PartModifiers.Select(m => m.Modifier).OrderBy(m => m.Ordering);
|
||||
public IEnumerable<Modifier> Modifiers => []; // PartModifiers.Select(m => m.Modifier).OrderBy(m => m.Ordering);
|
||||
|
||||
[InverseProperty(nameof(PaymentDeliveryPart.DeliveryPart))]
|
||||
public virtual PaymentDeliveryPart? Payment { get; private set; }
|
||||
|
||||
Reference in New Issue
Block a user