I was searching for a better approach when a updating the DB using Entity FrameWork 5.
Similar to this post Better way to update a record using Entity Framework
If i have more number of columns then this is not better?
Apart from Auto mapper is there any other updates now?
I was going through other post which implemented the below approach
context.Entry(original).CurrentValues.SetValues(updated)
Is this the better one ?
Any New ideas are most welcome. May be I am outdated :)