3 easy ways to view the SQL created by Entity Framework Core (EF Core).
EntityFramworkCore
A collection of 3 posts
How to View the SQL Generated by Entity Framework Core using .NET Core's built in Logging
This post shows you how to intercept and view the SQL generated by Entity Framework Core. This method takes advantage of Microsoft's built in logging for .NET core. Only 2 lines of code required.
How to Create Computed Columns in Entity Framework Core
How to use computed columns in Entity Framework Core code first.