randree
randree
Hi, I got it up and running by changing the lines from **go.mod** `github.com/revel/modules v0.21.0` `github.com/revel/revel v0.21.0` to `github.com/revel/modules v1.0.0` `github.com/revel/revel v1.0.0` Hope that can help. I tested the example...
I can verify that problem. In my code I get an error and if I run a test on this repository everything works fine. Is there a problem with the...
While it may not be the most aesthetically pleasing, it works. I'm optimistic that a more elegant solution will be available soon. Below is an example of how it can...
Can you provide an example how to use this? Also, is there a way of using "RANDOM()" in case of Postgres database?
Thanks for the answer! Unfortunately, I'm working with Postgres and there is no function RAND() only RANDOM(). I found a solution but its not very beautiful. ``` ... := q.ReplaceDB(q.Product.UnderlyingDB().Clauses(clause.OrderBy{...