How to display parent field value in lightning-datatable in Salesforce Lightning Web Component/LWC?
Sample Code: Apex Class: public with sharing class ProductController { @AuraEnabled( cacheable = true ) public static List< PricebookEntry > fetchProducts() { return [ SELECT Id, Product2.Name, IsActive, UnitPrice, Product2.Family ....