drjackson
drjackson
Well, I think the generated SQL should work, but even though the log says the statement was executed, the row isn't actually updated. I'm using Microsoft.EntityFramework.Sqlite 7.0.2.
If you follow this getting started tutorial: https://learn.microsoft.com/en-us/ef/core/get-started/overview/first-app?tabs=netcore-cli But modify Program.cs to do the following: ``` using System; using System.Linq; using Microsoft.EntityFrameworkCore; using var db = new BloggingContext(); // Create...
I assume this is expected behavior then and so I'll close this issue. Thanks for your help.