1

我想通过唯一的(在本例中为电子邮件)字段查找实体。

User
id (int, pk)
email (string, not null, unique)
password (string, not null)

我知道有findBy存储库,但由于电子邮件字段是唯一的,我不想使用存储库,因为总是只有一个结果。

这可能吗?

4

1 回答 1

4

它可以通过使用来完成findOneBy

于 2013-03-22T13:37:20.463 回答