所以我知道我可以编写一个像下面这样的接口,Spring Data 会自动为我生成必要的数据库访问内容。现在我想做的是添加一个新的方法名称,它将计算符合一组标准的实体的数量。
public interface EventRegistrationRepository extends JpaRepository<EventRegistration, String>
{
List<EventRegistration> findByUser_EmailAddress(String email);
int countByEvent_Code(String eventCode);
}
截至目前, countBy 方法会导致此错误:
Caused by: org.springframework.data.mapping.PropertyReferenceException: No property count found for type com.brazencareerist.brazenconnect.model.relational.EventRegistration
我在这里尝试做的正确语法是什么?