westito

Results 46 comments of westito

> I would be interested in PostgreSQL support :) > Any tips (steps) on how to start to provide such feature ? Postgres PR: https://github.com/simolus3/moor/pull/1507

According to Bedrock documentation it is compatible with MySQL. A mysql dialect may fit for this RDBM. However, the current implementation of Drift makes hard to create dialects (this Postgres...

I think, we could use something like '.deprecated()' column modifier. It could be visible for migrator, but do not visible for regular Table definition, DataModels and Companions.

Thanks for this feature, that's i had waited for. I always used separated model classes with a lot of boilerplate "toDb", "fromDb" code.

`mutable_classes` builder option and immutability is not applicable here. It's up to you to use `final` modifier or not in models.

Feature request: Generated row class mapper. When I use `Insertable` interface I need declare all columns in `toColumns()`. That's a boilerplate what I want to avoid with `@UseRowClass`. Can you...

Code generation not my cup of tea, but I see this in generated code: ``` @override Product map(Map data, {String? tablePrefix}) { final effectivePrefix = tablePrefix != null ? '$tablePrefix.'...

I made a PR for this mapper feature https://github.com/simolus3/moor/pull/1239

Next level: Like hibernate, merge table definition and row classes with annotations. I made a very basic proof-of-concept code: https://github.com/westito/moor/pull/1

moORM initial alpha version :))) https://github.com/westito/moORM/tree/develop Sample implementation: https://github.com/westito/moORM/blob/develop/moor/example/example.dart Backward compatible with moor