i've tried to do this
model class is:
public class Model
{
public string Title{ get; set; }
public int PartId { get; set; }
public bool Valid { get; set; }
}
With this i get all films from db:
List<Model> movies = this._context.ExecuteQuery<Model>(querystring).ToList();
I've tried to get all movie which titles contains (not equal) the word "monster"
List<Model> results = movies.Where(c=> c.Title.Contains("monster"));