In my database I have computed field "FullName" created by EF core using HasComputedColumnSql fluent API and everything is working fine in the app.
However I have some unit tests using InMemory database which are testing some logic using "FullName" column which is null in InMemory database.
Any idea how I can mock computed column behavior in in memory database?