ด้วย Spring CrudRepository Query; ฉันต้องการเลือกเอนทิตี "DeviceType" ที่มีคุณสมบัติเป็น "ชื่อ" แต่การสืบค้นต่อไปนี้ให้เลือกสิทธิ์ในลักษณะที่คำนึงถึงตัวพิมพ์เล็กและใหญ่ ฉันจะทำให้ตัวพิมพ์เล็กหรือใหญ่ได้อย่างไร ขอบคุณ.
public interface DeviceTypeRepository extends CrudRepository<DeviceType, Integer>, JpaSpecificationExecutor<DeviceType> {
public Iterable<DeviceType> findByNameContaining(String name);
}
public Iterable<DeviceType> findByNameIgnoreCaseContaining(String name);
หรือยัง?