Created
August 1, 2019 20:26
-
-
Save JudahGabriel/385754f4dcde51f1bcce445d19d96c54 to your computer and use it in GitHub Desktop.
Querying with RavenDB
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
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