Skip to content

Instantly share code, notes, and snippets.

@JudahGabriel
Created August 1, 2019 20:23
Show Gist options
  • Save JudahGabriel/c7778c5addb2f256ccf031661d90cdb8 to your computer and use it in GitHub Desktop.
Save JudahGabriel/c7778c5addb2f256ccf031661d90cdb8 to your computer and use it in GitHub Desktop.
Using RavenDB to store an object
using (var session = raven.OpenSession())
{
var outlaw = new Outlaw
{
Name = "Simmons, J.",
IsGunslinger = true
};
session.Store(outlaw);
session.SaveChanges();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment