Skip to content

Instantly share code, notes, and snippets.

@yetanotherchris
Created February 21, 2013 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yetanotherchris/5004085 to your computer and use it in GitHub Desktop.
Save yetanotherchris/5004085 to your computer and use it in GitHub Desktop.
ORMS: db4o
public class Person
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
}
public class PersonManager
{
public static void Example()
{
// Doesn't require app.config/web.config settings
IObjectContainer db = Db4oFactory.OpenFile("example.db");
// Saving example
Person person = new Person();
person.Id = Guid.NewGuid();
person.Name = "John";
person.Email = "john@aol.com";
db.Store(person);
db.Close();
// Query example
db = Db4oFactory.OpenFile("example.db");
IList<Person> list = db.Query<Person>(p => p.Name == "John");
db.Close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment