We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 530b8fe commit 22d16dbCopy full SHA for 22d16db
docs/pages/api/mapper/map.md
@@ -89,8 +89,7 @@ DapperPlusManager.Entity<Order>()
89
90
{% include template-example.html %}
91
{% highlight csharp %}
92
-DapperPlusManager.Entity<Order>()
93
- .Map(order => new { AvgPrice1 = order.TotalPrice/order.TotalQuantity })
+DapperPlusManager.Entity<Order>())
94
.Map(order => order.TotalPrice / order.TotalQuantity, "AvgPrice2");
95
96
DapperPlusManager.Entity<Order>()
0 commit comments