public with sharing class ContactController {
@AuraEnabled(cacheable=true)
public static List<Contact> getContacts() {
List<Contact> conlist = [
SELECT FirstName, LastName, Email
FROM Contact
WITH SECURITY_ENFORCED
];
return conlist;
}
}
답변 3개
Yes sir, it is the complete code its not inner class for any other class. i have tried to execute entire class in anonymus block but it is showing the same error.