Recent posts

Prevent SQL Injection in EF Core

less than 1 minute read

In-line SQL and EF Core EF Core has always supported direct SQL queries against databases like below. var searchTerm = "magic"; var posts = blogContext.Posts...