Skip to content

Instantly share code, notes, and snippets.

@weslley39
Created June 3, 2014 14:26
Show Gist options
  • Save weslley39/be8a778a82f3e41abc53 to your computer and use it in GitHub Desktop.
Save weslley39/be8a778a82f3e41abc53 to your computer and use it in GitHub Desktop.
Update Sub document in mongodb with mongoc# driver
Repository.Update(Query<Ecf>.EQ(x => x.Id, id),Update<Ecf>.Push(x => x.Totalizadores, totalizador));
Repository.UpdateById(id, Update<Ecf>.Push(x => x.Totalizadores, totalizador));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment