Skip to content

Instantly share code, notes, and snippets.

@ronnieoverby
Created April 13, 2012 01:43
Show Gist options
  • Save ronnieoverby/2372746 to your computer and use it in GitHub Desktop.
Save ronnieoverby/2372746 to your computer and use it in GitHub Desktop.
// raven linqpad driver query sample
var goats = Query<Goat>().Where(x=> x.Name = "Bernie");
goats.Dump("My Goats");
foreach(var g in goats)
g.Name = "Harold";
SaveChanges();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment