Pregunta

When I have:

public class User extends Model {

    @Id
    public Long id;

    @Constraints.Required
    @Formats.NonEmpty
    public String username;

public String firstName; public String lastName;

can I do User.find.byUsername("myusername") or User.find.byFirstNameAndLastName... or would I have to define the method in the User class?

Thank you!

¿Fue útil?

Solución

There is no "magic" method in PlayFramework2 (ok, in reality there is just "less" magic methods)

So you need to define these functions, or to use a composed statement.

User.find.where().eq("username", myUserName).findUnique()
User.find.where().eq("firstname", firstname).eq("lastname", lastname).findList()
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top