Dmytro Puzak

Results 83 comments of Dmytro Puzak

Hey guys, Looks like the 'RawQuery' feature is still actual. I've started to work on it and plan to implement the same interface as Android Room. Does anybody have any...

Here is a [draft PR](https://github.com/vitusortner/floor/pull/517). I've verified it briefly, it's working ok for me, so you can try to switch to my branch until it will be merged to the...

Well, it's been so long, but I almost finished `rawQuery` feature 😁

@Mhamza-MM does the issue still appear? If you use hot reload or hot restart, this can cause a problem. Do you see the same problem with the `floor` example project?

Opened a [discussion](https://github.com/pinchbv/floor/discussions/689) about the feature that should solve issues like it.

> Unfortunately floor doesn't support this yet. Yeah, that's true. My suggestion is to implement that 😁 I can do this after I've finished working on the [RawQuery feature](https://github.com/pinchbv/floor/pull/517/files). The...

These changes limit the use of Floor for all platforms, so I think we need to create a separate package that supports sqflite_sqlcipher encryption only for Andriod/IOS/MacOS, and in the...

@BojanDolic Yes, it's true, the `floor_generator` doesn't take into account constructor parameters that are not declared as a class field. Frankly, I more prefer to keep `entity` constructors simple. In...

@SteveCruise To delete all data from the table you need to create a next `Query` request: ```dart @Query('DELETE FROM task') Future clearTable(); ``` But note that `Query` actions doesn't trigger...

> @dkaera thanks for your contribution! Is there anything we can help you with to continue working on this feature? Currently not, thank you. I've to get time to finish...