Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

Retain order of autogenerated fields #58

Open
membersound opened this issue May 31, 2019 · 0 comments
Open

Retain order of autogenerated fields #58

membersound opened this issue May 31, 2019 · 0 comments

Comments

@membersound
Copy link

I'd love to see a feature do keep the autogenerated fields in the same order of the base @Entity class.

Current situation:

@Entity
public class Person {
   String lastname;
   String firstname;
}

results in:

@Generated("com.querydsl.codegen.EntitySerializer")
public class QPerson extends EntityPathBase<Person> {
   public final String firstname = createString("firstname");
   public final String lastname = createString("lastname");
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant