Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created September 28, 2012 16:38
Show Gist options
  • Save prabirshrestha/3800842 to your computer and use it in GitHub Desktop.
Save prabirshrestha/3800842 to your computer and use it in GitHub Desktop.
raven db dynamic
var store = new DocumentStore() { ... };
store.Initialize();
using(var session = store.OpenSession().AsDynamic()) {
session.posts.insert(name: "....");
session.posts.insert(name: "....", content: "..." );
session.posts.insert(name: "....");
session.save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment