I have an entity retrieved from db as follows
using ( var ctx = new Mycontext() )
return ctx.MyGroups.First( // query );
this is bound to UI and updated on user save action as follows
using ( var ctx = new Mycontext() )
{
ctx.MyGroups.Attach(o); // verified object o is updated
ctx.SaveChanges();
}
However the db is NOT updated
Environment is .net 4.0, db is sql compact 4
Any help on what could be missing/wrong ?