I have a SQL statement in C# in a string variable:
string sqlString = "UPDATE \"MyTable\""
+ $" SET \"STATUS\" = {(int)StatusValue.Confirmed}"
+ $" WHERE \"ID\" = {MessageId}";
But now I need to transform it to Entity Framework, but unfortunately I do not know Entity Framework well enough. How do I do that?