I am trying to get a filtered list from MS Project and filter on the name by using something akin to contains so that we can return a reduced set of results to process.
projContext.Load(projContext.Projects, qp => qp.Include(qr => qr.Id, qr => qr.Name));
I seem to have exhausted all the options that I know about and trying to use contains isn't working for me.
Intellisense allows this . . . (but doesn't like it at run time)
projContext.Load(projContext.Projects, qp => qp.Include(qr => qr.Id, qr => qr.Name.Contains("myfilter")));