I have the line below, and thinking to filter the CustomersPics isdeleted == true
. How do I do that?
List<Customer> _customer = context.Customers
.Where(r => r.IsDeleted == IsDeleted)
.Include(r=> r.CustomersPics)
.ToList();