Details
-
New Feature
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
-
None
Description
It would nice if the LINQ Provider would offer support for List<T>.TrueForAll(), Enumerable.All() or both so that something like the sample below would work out of the box:
class Post
{
string Title;
string Body;
List<string> Tags;
}
This SearchByTag is supposed to search for all Posts containing ALL the tags.
public List<Snip> SearchByTag(List<string> Tags, int PageSize, int
StartPage, int PageCount)
{
using (var db = ServiceLocator.Get<IMongo>())