mqus

Results 99 comments of mqus

Are you finished already and want a review or is this WIP? If its a work in progress, please convert this PR into a draft for now(The option should be...

I think the architecture of floor (or room for that matter) is not well-suited for dynamic querying or query-building, but your approach can definitely work and be a middle ground/workaround...

~~I'll assume that this problem was solved, since you did not answer for so long. If you have any updates, feel free to reopen this issue or create a new...

Ah right, that makes sense! If you want to avoid overwriting your changes to the generated file, you might want do this query in one of the callback hooks (e.g....

unintentionally closed again :sweat_smile:

So I looked at it and it might make sense to add support for [partial indexes](https://www.sqlite.org/partialindex.html) (`CREATE INDEX .... WHERE expr`). Because expr can be arbitrary on the given table,...

> `Future*` Why the `*`s? Maybe I don't know this feature but dart has no pointer type afaik. What did you try to express? (or is this just in the...

right. I investigated a bit more and `*` is just darts representation of "I don't know if this is nullable or not" to represent legacy code. I think I found...

(does it generate some output at least or is there nothing?)

Can you simply add `*` or `?` to one of your methods (just any one where `//@dart=2.12` is not present and see what dartanalyzer/the fullter linter returns? I added something...