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

Retain order of autogenerated fields #58

@membersound

Description

@membersound

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");
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions