I'm very new to Entity, and I'm trying to find all elements in a DbSet object that match a boolean condition that's passed as a string:
Example:
string condition = "Weight > 30 && Age == 20";
var results = context.Data.FindIf(condition);
where Weight and Age are properties of Data, and the boolean condition given can vary. I can hard code it easily with LINQ expressions but is there a way to do it in the way I described?