I’m trying to update a specific record based off of a users selection. Regarding Entity Framework syntax, I’m not very familiar. Is it possible to achieve this SQL statement in Entity FrameWork?
Thank you!
update Table1
set Colum1='1'
where Column2='1234567'
where _db is the Entity Framework DbContext class…
HTH.