We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac5d2ae commit ca5f105Copy full SHA for ca5f105
examples/Linqraft.Benchmark/InMemoryQueryAotBenchmark.cs
@@ -172,15 +172,16 @@ public int Linqraft_AutoGeneratedDto()
172
s.Id,
173
s.Foo,
174
s.Bar,
175
- Childs = s.Childs.SelectExpr<SampleChildClass, InMemoryQueryAotLinqraftSampleChildClassDto>(
176
- c => new
177
- {
178
- c.Id,
179
- c.Baz,
180
- ChildId = c.Child?.Id,
181
- ChildQux = c.Child?.Qux,
182
- }
183
- ),
+ Childs = s.Childs.SelectExpr<
+ SampleChildClass,
+ InMemoryQueryAotLinqraftSampleChildClassDto
+ >(c => new
+ {
+ c.Id,
+ c.Baz,
+ ChildId = c.Child?.Id,
+ ChildQux = c.Child?.Qux,
184
+ }),
185
Child2Id = s.Child2?.Id,
186
Child2Quux = s.Child2?.Quux,
187
Child3Id = s.Child3.Id,
0 commit comments