Created
November 26, 2015 16:12
-
-
Save contensis/727ef4d32a1af260c885 to your computer and use it in GitHub Desktop.
This file contains 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 results = Populo.Contacts.Query<ExplicitDataLog>( | |
new Query( | |
new[] | |
{ | |
Op.EqualTo("trackingId", "MyTrackingId"), | |
Op.Exists("data.custom.myValue", true) | |
})); | |
Or: | |
var results = Populo.Contacts.Query<ExplicitDataLog>( | |
new Query( | |
new[] | |
{ | |
Op.EqualTo("trackingId", "MyTrackingId"), | |
Op.Exists("myValue", true) | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment