Midhath Ahmed
Midhath Ahmed
> You could simply make Status a regular C# property which looks at Children and and calculates the return value from that. [Configure that property as unmapped](https://learn.microsoft.com/en-us/ef/core/modeling/entity-properties?tabs=data-annotations%2Cwithout-nrt#included-and-excluded-properties) in order to...
thanks for the tip @ajcvickers, have the following getter and setter for the field, ```csharp public Status Status { get { return _children.Count() == 0 ? Status.Pending : (_children.All(a =>...
Hi, @ajcvickers i have created a [repro](https://github.com/mdhthahmd/ef-core-6) as instructed, i hope this provides a full picture. Hope this clarifies the issue. Regards