dotnet-dynamic-linq/PoweredSoft.DynamicLinq.Test/ComplexQueryTest.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2018-02-11 20:55:29 -05:00
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<Post>()
{
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)
);
}
}
}