forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMattJohnson.cs
47 lines (39 loc) · 1.6 KB
/
MattJohnson.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
using System.Linq;
using Raven.Tests.Common;
using Xunit;
namespace Raven.Tests.MailingList
{
public class MattJohnson : RavenTest
{
public class Foo
{
public string Id { get; set; }
public decimal Decimal { get; set; }
public double Double { get; set; }
public int Integer { get; set; }
}
[Fact]
public void ShouldSortProperly()
{
using(var store = NewDocumentStore())
{
using (var session = store.OpenSession())
{
session.Store(new Foo { Decimal = 1, Double = 1, Integer = 1 });
session.Store(new Foo { Decimal = 3, Double = 3, Integer = 3 });
session.Store(new Foo { Decimal = 10, Double = 10, Integer = 10 });
session.SaveChanges();
}
using (var session = store.OpenSession())
{
var query1 = session.Query<Foo>().OrderBy(x => x.Decimal).ToList();
var query2 = session.Query<Foo>().OrderBy(x => x.Double).ToList();
var query3 = session.Query<Foo>().OrderBy(x => x.Integer).ToList();
Assert.True(query1[0].Decimal <= query1[1].Decimal && query1[1].Decimal <= query1[2].Decimal);
Assert.True(query2[0].Decimal <= query2[1].Decimal && query2[1].Decimal <= query2[2].Decimal);
Assert.True(query3[0].Decimal <= query3[1].Decimal && query3[1].Decimal <= query3[2].Decimal);
}
}
}
}
}