[SalesForce] How to load multiple records using lightning data service

I want to load multiple records using lightning data service without using any apex controllers. Is it possible?

Best Answer

As per Salesforce Docs:

Lightning Data Service supports primitive DML operations—create, read, update, and delete. It operates on one record at a time, which you retrieve or modify using the record ID.

SO you need to create multiple instance of it to handle bulk operation which is not recommended.

Considerations

Related Topic