Skip to content

Instantly share code, notes, and snippets.

@contensis
Created November 26, 2015 16:12
Show Gist options
  • Save contensis/727ef4d32a1af260c885 to your computer and use it in GitHub Desktop.
Save contensis/727ef4d32a1af260c885 to your computer and use it in GitHub Desktop.
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