Skip to content

Instantly share code, notes, and snippets.

@JudahGabriel
Created August 1, 2019 20: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 JudahGabriel/385754f4dcde51f1bcce445d19d96c54 to your computer and use it in GitHub Desktop.
Save JudahGabriel/385754f4dcde51f1bcce445d19d96c54 to your computer and use it in GitHub Desktop.
Querying with RavenDB
using (var session = raven.OpenSession())
{
var gunslingers = session.Query<Outlaw>().Where(o => o.IsGunslinger);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment