Created
September 28, 2012 16:38
-
-
Save prabirshrestha/3800842 to your computer and use it in GitHub Desktop.
raven db dynamic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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