-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathJoinTest.cs
92 lines (78 loc) · 2.03 KB
/
JoinTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using System;
using System.IO;
using System.Collections.Generic;
//using System.Linq;
using System.Text;
using SQLite;
#if NETFX_CORE
using Microsoft.VisualStudio.TestTools.UnitTesting;
using SetUp = Microsoft.VisualStudio.TestTools.UnitTesting.TestInitializeAttribute;
using TestFixture = Microsoft.VisualStudio.TestTools.UnitTesting.TestClassAttribute;
using Test = Microsoft.VisualStudio.TestTools.UnitTesting.TestMethodAttribute;
#else
using NUnit.Framework;
#endif
using System.Diagnostics;
namespace SQLite.Tests
{
[TestFixture]
public class JoinTest
{
TestDb _db;
[SetUp]
public void SetUp ()
{
_db = new TestDb ();
_db.CreateTable<Product> ();
_db.CreateTable<Order> ();
_db.CreateTable<OrderLine> ();
var p1 = new Product { Name = "One", };
var p2 = new Product { Name = "Two", };
var p3 = new Product { Name = "Three", };
_db.InsertAll (new [] { p1, p2, p3 } );
var o1 = new Order { PlacedTime = DateTime.Now, };
var o2 = new Order { PlacedTime = DateTime.Now, };
_db.InsertAll (new [] { o1, o2 } );
_db.InsertAll (new [] {
new OrderLine {
OrderId = o1.Id,
ProductId = p1.Id,
Quantity = 1,
},
new OrderLine {
OrderId = o1.Id,
ProductId = p2.Id,
Quantity = 2,
},
new OrderLine {
OrderId = o2.Id,
ProductId = p3.Id,
Quantity = 3,
},
});
}
class R
{
}
//[Test]
public void JoinThenWhere ()
{
var q = from ol in _db.Table<OrderLine> ()
join o in _db.Table<Order> () on ol.OrderId equals o.Id
where o.Id == 1
select new { o.Id, ol.ProductId, ol.Quantity };
var r = System.Linq.Enumerable.ToList (q);
Assert.AreEqual (2, r.Count);
}
//[Test]
public void WhereThenJoin ()
{
var q = from ol in _db.Table<OrderLine> ()
where ol.OrderId == 1
join o in _db.Table<Order> () on ol.OrderId equals o.Id
select new { o.Id, ol.ProductId, ol.Quantity };
var r = System.Linq.Enumerable.ToList (q);
Assert.AreEqual (2, r.Count);
}
}
}