stormberry icon indicating copy to clipboard operation
stormberry copied to clipboard

Access your postgres database effortlessly from dart code.

Results 20 stormberry issues
Sort by recently updated
recently updated
newest added

A simple reproducible example is: ``` @Model() abstract class Foo { @PrimaryKey() String get id; List get bars; } @Model() abstract class Bar { @PrimaryKey() String get id; } ```...

I have an email field but stormberry is replacing @ by @@ which make the email not usable ^^ ![Simulator Screen Shot - iPhone 13 - 2022-08-24 at 12 08...

My use case here is that I have a huge table with billions of entries. To improve a bit performance I want a view with let say the data since...

Doing queries with where on multiple fields is currently limited as SQL need to be written manually.

That one is just for the future but would be nice if user have choice of having View as real database views or just virtual views where we just sub...

I'm used to do pagination with `limit` and `offset`, having something build in would be huge addition as of today the only way is to write the SQL.

This is what I notice different compare to others generators out there: - having to have everything in one file configured un build.yaml - not using `part` and `part of`

Hey, I'm checking for a Postgres ORM and found your package, really like your approach. The query capabilities are quite light for now, having something like `users..where.id.equals(10)..where.name.like('%Jim')` a bit like...

Hi! I'm trying to make a request using JOIN, I read about the @BindTo() annotation in the documentation, but I don't know how to execute the request. I couldn't find...

I have a problem in the production for reason. There is an issue almost like this[ issue#57](https://github.com/schultek/stormberry/issues/58) one. When occur any issue like passing wrong column name or smthg like...