We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, i have a problem when after generate a gorma design:
Field("user_device_id", gorma.UUID, func() { Alias("device_id") SQLTag("type:varbinary(36)") })
the result:
// Belongs To Relationships // UserDeviceVerificationFilterByUserDevice is a gorm filter for a Belongs To relationship. func UserDeviceVerificationFilterByUserDevice(userDeviceID uuid.UUID, originaldb *gorm.DB) func(db *gorm.DB) *gorm.DB { if userDeviceID.String() != "" { return func(db *gorm.DB) *gorm.DB { return db.Where("user_device_id = ?", userDeviceID) } } return func(db *gorm.DB) *gorm.DB { return db } }
i think, when Alias is set, must create filter by "Alias", not from Table ID, like this :
// Belongs To Relationships // UserDeviceVerificationFilterByUserDevice is a gorm filter for a Belongs To relationship. func UserDeviceVerificationFilterByUserDevice(userDeviceID uuid.UUID, originaldb *gorm.DB) func(db *gorm.DB) *gorm.DB { if userDeviceID.String() != "" { return func(db *gorm.DB) *gorm.DB { return db.Where("device_id = ?", userDeviceID) } } return func(db *gorm.DB) *gorm.DB { return db } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, i have a problem when after generate a gorma design:
the result:
i think, when Alias is set, must create filter by "Alias", not from Table ID, like this :
The text was updated successfully, but these errors were encountered: