using Microsoft.VisualStudio.TestTools.UnitTesting; using PoweredSoft.DynamicLinq.Dal.Pocos; using PoweredSoft.DynamicLinq.Extensions; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PoweredSoft.DynamicLinq.Test { [TestClass] public class ComplexQueryTest { [TestMethod] public void ComplexQueryBuilder() { // subject. var authors = new List() { new Post { Id = 1, AuthorId = 1, Title = "Hello 1", Content = "World" }, new Post { Id = 2, AuthorId = 1, Title = "Hello 2", Content = "World" }, new Post { Id = 3, AuthorId = 2, Title = "Hello 3", Content = "World" }, }; // the query. var query = authors.AsQueryable(); query = query.Query(q => q .Compare("AuthorId", ConditionOperators.Equal, 1) .Or("AuthorId", ConditionOperators.Equal, 2) ); } } }