Architecture
How to reference an Objects property name as a parameter in a LINQ query? *Intermediate*
I want to do myObjectList.Where(x => x.PropertyAsParameter)This way I can run the method for each property I want to search for by passing in a string that replaces PropertyAsParameter with the property name. I seen Read more…