Roland Praml

Results 50 comments of Roland Praml

Hello Rob, I want to explain you our use case: We want to import "stock orders" - All orders have an [ISIN](https://en.wikipedia.org/wiki/International_Securities_Identification_Number) - stock value and amount and some other...

+1 for `assumeConsistency`. I'll create a PR for ebean-annotation edit: sry, I misunderstand your last sentence. The more I think, the better I like `forceLeftJoin` as it expresses what it...

Hello Rob, we use jackson a lot, also some other frameworks like Spring rely on this - so it is not an easy task to move away from jackson. As...

@rbygrave can you take a look at this issue and maybe give an estimation if you have time to fix that or give me some tips how I should try...

We currently use a separate m2m entity which 2 id columns and one order column as workaround

We use Ebean in multi tenant mode and here DDL/DbMigration has to be completely done by the application, because ebean does neither run DbMigration on start up, nor provide an...

Note to myself: This is still on my to-do list ;)

@rbygrave we hit the same problem now, when defining `@ElementCollection`s like ```java @ElementCollection @CollectionTable(joinColumns = @JoinColumn(name = "person_id")) @OrderColumn(name="foo") List phoneNumbers = new ArrayList(); ``` We would expect an `order...

We would need some kind of backward comptibility. So that old data (written in millis in our case) is still readable. This may also affect other people when #2457 is...

> Hmmm, that might make it near impossible to actually remove the millis/nanos format option. Should not be too difficult, I think we have to probe different formats. See: https://github.com/FOCONIS/ebean/commit/68a82a049ac85e1619bd3b4da1173c2ac288b976#diff-f281574378f17447285b13aed7a781ddd33559d8a2a7f5370adc40ea29cbc02aR66