Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit edee6d7

Browse files
committed
test tweaks
1 parent 7584468 commit edee6d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/ServiceStack.OrmLite.Tests/Expression/SqlExpressionTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ public void Can_select_Dictionary_with_SqlExpression()
9696
// Now group by all columns without listing them - effectively "SELECT DISTINCT *"
9797

9898
query = db.From<LetterFrequency>()
99-
.Select(x => new { x.Id })
10099
.Where(q => q.Letter != "D")
101-
.GroupBy(x => new { x });
100+
.GroupBy(x => new { x })
101+
.Select(x => new { x.Id });
102102

103103
var list = db.SqlList<int>(query);
104104
Assert.That(list, Is.EquivalentTo(new[] { 1, 2, 3, 4, 5, 6 }));

tests/ServiceStack.OrmLite.Tests/Issues/MultipleSelfJoinsWithAliases.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void Can_use_cusom_SqlExpression_to_add_multiple_self_Left_Joins()
110110
.LeftJoin<ContactIssue>((s,c) => s.SellerId == c.Id, db.JoinAlias("seller"))
111111
.LeftJoin<ContactIssue>((s,c) => s.BuyerId == c.Id, db.JoinAlias("buyer"))
112112
.Select<Sale, ContactIssue>((s,c) => new {
113-
sale = Sql.AllFields(s),
113+
s,
114114
BuyerFirstName = Sql.JoinAlias(c.FirstName, "buyer"),
115115
BuyerLastName = Sql.JoinAlias(c.LastName, "buyer"),
116116
SellerFirstName = Sql.JoinAlias(c.FirstName, "seller"),

0 commit comments

Comments
 (0)