Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created November 4, 2010 18:12
Show Gist options
  • Save mgroves/662883 to your computer and use it in GitHub Desktop.
Save mgroves/662883 to your computer and use it in GitHub Desktop.
void Main()
{
using(var db = Db4oClientServer.OpenClient("localhost",8732,"debug-user","debug-password"))
{
var objects = (from MyEntity e in db
where e.Address == "337 Main St."
select e);
objects.Dump();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment