-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathParent-Child-Query.linq
58 lines (47 loc) · 1.23 KB
/
Parent-Child-Query.linq
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
<Query Kind="Program">
<NuGetReference>Dapper</NuGetReference>
<NuGetReference>System.Data.SqlClient</NuGetReference>
<Namespace>Dapper</Namespace>
<Namespace>System.Data.SqlClient</Namespace>
</Query>
void Main()
{
var conn = new SqlConnection(MyExtensions.SQLConnectionString);
var lookup = new Dictionary<int, Parent>();
var result = conn.Query<Parent, Child, Parent>(
@"SELECT
p.ParentId, p.Name, p.SecondName, c.ChildId,
c.Name ChildName, c.SecondName SecondChildName
FROM Parent p LEFT JOIN Child c ON p.ParentId = c.ParentId",
(parent, child) =>
{
if (child is null)
{
return parent;
}
if (!lookup.TryGetValue(parent.ParentId, out Parent found))
{
lookup.Add(parent.ParentId, found = parent);
}
found.Childs = found.Childs.Append(child).ToArray();
return found;
}, splitOn: "ChildId").Distinct();
result.Dump("Parent Child Result");
}
class Parent
{
public int ParentId { get; set; }
public string Name { get; set; }
public string SecondName { get; set; }
public Child[] Childs { get; set; }
public Parent()
{
Childs = new Child[] {};
}
}
class Child
{
public int ChildId { get; set; }
public string ChildName { get; set; }
public string SecondChildName { get; set; }
}