Skip to content

Instantly share code, notes, and snippets.

@lekker-solutions
Last active May 19, 2022 20:24
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 lekker-solutions/731f0b2462c5927b97851f4bd1ea61ce to your computer and use it in GitHub Desktop.
Save lekker-solutions/731f0b2462c5927b97851f4bd1ea61ce to your computer and use it in GitHub Desktop.
New FBQL
TCondition.And<TNextCondition>
TCondition.Or<TNextCondition>
// where TCondition : IBqlUnary
// where TNextCondition : IBqlUnary
var results =
SelectFrom<TableA>
.Where<TableA.fieldA.IsEqual<@P.AsString>>
.And<TableA.fieldB.IsEqual<@P.AsInt>>
.View.Select(graph, "fieldA", 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment