Hi,
Is LazyLoading not built-in/supported in Core and how to enable it? Although the service code below works fine, I have to do the "includes" on every services which kinda cumbersome.
public IEnumerable<Customers> GetAllCustomers() { return _customers.Get(x => x.IsActive, "Products, Virtual-Property-1, Virtual-Property-2, Virtual-Property-3, Virutal-Property-ETC"); }
Thanks,