ent icon indicating copy to clipboard operation
ent copied to clipboard

An entity framework for Go

Results 509 ent issues
Sort by recently updated
recently updated
newest added

👋 Just ran into this! Minor thing but removes a stumbling block for beginners.

Hi guys! We already have a bunch of indexes with the format `name-uuid`, and upgrading to ent 0.15.4 it's making us rename them again due to this change of default...

- [x] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Summary (and Motivation)💡 SQLite has an optimization for composite primary keys...

Fixes #3675 `UpdateNewValues()` was incorrectly overwriting existing database values with default values when those fields were not explicitly set in the upsert operation. The issue occurred because `defaults()` runs before...

When using upsert with `OnConflictColumns(x).UpdateNewValues()` the resulting query will update the fields that have a default value configured with this default value, overriding a potential value already set in the...

Thank you for your great contributions to the Ent framework. I've encountered some confusion regarding the NotEmpty() method that I believe warrants discussion. The framework's default behavior makes all fields...

- [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Current...

When an error occurs during building queries, I would like the actual error from the selectors to be propagated back to the caller instead of just the error string. -...