I have this argument from a function
params Expression<Func<Customer, object>>[] includes
I want to check if a property is defined in one of the includes and remove it. Something like this:
includes.ToList().Remove(x => x.Addresses)
I have this argument from a function
params Expression<Func<Customer, object>>[] includes
I want to check if a property is defined in one of the includes and remove it. Something like this:
includes.ToList().Remove(x => x.Addresses)