We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a query like this :
MoralisQuery<BuyPriceAcceptedEvent> q = await Moralis.Query<BuyPriceAcceptedEvent>(); q = q.WhereEqualTo("nftContract", contract); q = q.WhereEqualTo("tokenId", tokenId); q = q.OrderByDescending("createdAt"); q = q.Limit(1); BuyPriceAcceptedEvent acceptedEvent = await q.FirstOrDefaultAsync();
I loose the 3 filters "whereEqualTo" as soon as the OrderByDescending is called.
I looked at the code and it seems that the internal constructor of the MoralisQuery create a new Filters Dictionary if the where is null
There is not this logic for "Includes" or "KeySelections" or "Orderings"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a query like this :
I loose the 3 filters "whereEqualTo" as soon as the OrderByDescending is called.
I looked at the code and it seems that the internal constructor of the MoralisQuery create a new Filters Dictionary if the where is null
There is not this logic for "Includes" or "KeySelections" or "Orderings"
The text was updated successfully, but these errors were encountered: