LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T19:23:43Z http://stackoverflow.com/feeds/question/512984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/512984/linq-to-sql-complicated-query-with-aggregate-data-for-a-report-from-multiple-tab 5 LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system Initri 2009-02-04T19:49:24Z 2009-05-01T15:37:35Z <p>I want to convert the following query into LINQ syntax. I am having a great deal of trouble managing to get it to work. I actually tried starting from LINQ, but found that I might have better luck if I wrote it the other way around.</p> <pre><code>SELECT pmt.guid, pmt.sku, pmt.name, opt.color, opt.size, SUM(opt.qty) AS qtySold, SUM(opt.qty * opt.itemprice) AS totalSales, COUNT(omt.guid) AS betweenOrders FROM products_mainTable pmt LEFT OUTER JOIN orders_productsTable opt ON opt.products_mainTableGUID = pmt.guid LEFT OUTER JOIN orders_mainTable omt ON omt.guid = opt.orders_mainTableGUID AND (omt.flags &amp; 1) = 1 GROUP BY pmt.sku, opt.color, opt.size, pmt.guid, pmt.name ORDER BY pmt.sku </code></pre> <p>The end result is a table that shows me information about a product as you can see above. How do I write this query, in LINQ form, using comprehension syntax ?</p> <p>Additionally, I may want to add additional filters (to the orders_mainTable, for instance). </p> <p>Here is one example that I tried to make work, and was fairly close but am not sure if it's the "correct" way, and was not able to group it by size and color from the orders_productsTable.</p> <pre><code>from pmt in products_mainTable let Purchases = from opt in pmt.orders_productsTable where ((opt.orders_mainTable.flags &amp; 1) == 1) where ((opt.orders_mainTable.date_completedon &gt; Convert.ToDateTime("01/01/2009 00:00:00"))) select opt orderby pmt.sku select new { pmt.guid, pmt.sku, pmt.name, pmt.price, AvgPerOrder = Purchases.Average(p =&gt; p.qty).GetValueOrDefault(0), QtySold = Purchases.Sum(p =&gt; p.qty).GetValueOrDefault(), SoldFor = Purchases.Sum(p =&gt; p.itemprice * p.qty).GetValueOrDefault() } </code></pre> <p>*Edit:</p> <p>To be a little more explicit so you can understand what I am trying to do, here is some more explanation.</p> <p>Products are stored in products_mainTable Orders are stored in orders_mainTable Products That Have Been Ordered are stored in orders_productsTable</p> <p>I want to create several reports based on products, orders, etc. drilling into the data and finding meaningful bits to display to the end user.</p> <p>In this instance, I am trying to show which products have been purchased over a period of time, and are the most popular. How many sold, for what price, and what is the breakout per order. Maybe not the best order, but I'm just experimenting and picked this one.</p> <p>All of the tables have relationships to other tables. So from the product table, I can get to what orders ordered that product, etc.</p> <p>The largest problem I am having, is understanding how LINQ works, especially with grouping, aggregate data, extensions, subqueries, etc. It's been fun, but it's starting to get frustrating because I am having difficulty finding detailed explanations on how to do this.</p> <p>Thank you!</p> http://stackoverflow.com/questions/512984/linq-to-sql-complicated-query-with-aggregate-data-for-a-report-from-multiple-tab/513510#513510 4 Answer by bruno conde for LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system bruno conde 2009-02-04T21:44:59Z 2009-02-04T21:44:59Z <p>Hi Initri.</p> <p>I'm also a beginner in LINQ. I don't know if this is the right way of grouping by several fields but I think you have to transform these grouping fields into a representing key. So, assuming that all your grouping fields are strings or ints you can make a key as follows:</p> <pre><code> var qry = from pmt in products_mainTable join opt in orders_productsTable on pmt.guid equals opt.products_mainTableGUID join omt in orders_mainTable on opt.orders_mainTableGUID equals omt.guid where (opt.orders_mainTable.flags &amp; 1) == 1 group omt by pmt.sku + opt.price + opt.size + pmt.guid + pmt.name into g orderby g.sku select new { g.FirstOrDefault().guid, g.FirstOrDefault().sku, g.FirstOrDefault().name, g.FirstOrDefault().color, g.FirstOrDefault().price, AvgPerOrder = g.Average(p =&gt; p.qty).GetValueOrDefault(0), QtySold = g.Sum(p =&gt; p.qty).GetValueOrDefault(), SoldFor = g.Sum(p =&gt; p.itemprice * p.qty).GetValueOrDefault() }; </code></pre> <p>I didn't test this so please see if this helps you in any way. </p> http://stackoverflow.com/questions/512984/linq-to-sql-complicated-query-with-aggregate-data-for-a-report-from-multiple-tab/514585#514585 3 Answer by Initri for LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system Initri 2009-02-05T04:32:25Z 2009-02-05T04:32:25Z <p>Bruno, thank you so much for your assistance! The FirstOrDefault() was probably the largest help. Following some of what you did, and another resource I came up with the following that seems to work beautifully! This LINQ query below gave me nearly an exact replication of the SQL I posted above.</p> <p>Here's the other resource I found on doing a LEFT OUTER JOIN in LINQ: <a href="http://solidcoding.blogspot.com/2007/12/left-outer-join-in-linq.html" rel="nofollow">Blog Post</a></p> <p><strong>Final Answer:</strong></p> <pre><code> from pmt in products_mainTable join opt in orders_productsTable on pmt.guid equals opt.products_mainTableGUID into tempProducts from orderedProducts in tempProducts.DefaultIfEmpty() join omt in orders_mainTable on orderedProducts.orders_mainTableGUID equals omt.guid into tempOrders from ordersMain in tempOrders.DefaultIfEmpty() group pmt by new { pmt.sku, orderedProducts.color, orderedProducts.size } into g orderby g.FirstOrDefault().sku select new { g.FirstOrDefault().guid, g.Key.sku, g.Key.size, QTY = g.FirstOrDefault().orders_productsTable.Sum(c =&gt; c.qty), SUM = g.FirstOrDefault().orders_productsTable.Sum(c =&gt; c.itemprice * c.qty), AVG = g.FirstOrDefault().orders_productsTable.Average(c =&gt; c.itemprice * c.qty), Some = g.FirstOrDefault().orders_productsTable.Average(p =&gt; p.qty).GetValueOrDefault(0), } </code></pre> http://stackoverflow.com/questions/512984/linq-to-sql-complicated-query-with-aggregate-data-for-a-report-from-multiple-tab/811903#811903 0 Answer by John for LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system John 2009-05-01T15:37:35Z 2009-05-01T15:37:35Z <p>This was very helpful to me thanks. I had a similar issue I was trying to sort through only my case was much simpler as I didn't have any joins in it. I was simply trying to group one field, get the min of another, and the count. (min and count in the same query)</p> <p>Here is the SQL I wanted to recreate in Linq syntax:</p> <pre><code>select t.Field1, min(t.Field2), COUNT(*) from SomeTable t group by t.Field1 order by t.Field1 </code></pre> <p>Thanks to your post I eventually managed to come up with this:</p> <pre><code>from t in SomeTable group t by new { t.Field1 } into g orderby g.Key.Field1 select new { g.Key.Field1, code = g.Min(c =&gt; c.Field2), qty = g.Count() } </code></pre> <p>Which creates the following SQL behind the scenes:</p> <pre><code>SELECT [t1].[Field1], [t1].[value] AS [code], [t1].[value2] AS [qty] FROM ( SELECT MIN([t0].[Field2]) AS [value], COUNT(*) AS [value2], [t0].[Field1] FROM [SomeTable] AS [t0] GROUP BY [t0].[Field1] ) AS [t1] ORDER BY [t1].[Field1] </code></pre> <p>Perfect, exactly what I was looking to do. The key for me was that you showed it possible to do this inside the new {} which is something I had never considered trying. This is huge, I now feel like I have a significantly better understanding going forward.</p>