You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to translate the CurrentStatus property without the need to store it in the database explicitly or create a function? I'm looking for a solution that handles this calculation without requiring a database column and ensures efficient querying.
I've attempted to use "Computed columns," but they don't seem to support computations involving properties from other tables.
EF Core Version: 7
Database Provider: SQL Server
The text was updated successfully, but these errors were encountered:
I have two tables, Request and State. In the Request table, I've defined a computed property CurrentStatus as follows:
Is there any way to translate the CurrentStatus property without the need to store it in the database explicitly or create a function? I'm looking for a solution that handles this calculation without requiring a database column and ensures efficient querying.
I've attempted to use "Computed columns," but they don't seem to support computations involving properties from other tables.
EF Core Version: 7
Database Provider: SQL Server
The text was updated successfully, but these errors were encountered: