简体   繁体   中英

Linq-to-SQL query (AsEnumerable) on multiple tables

Here's a Linq-to-SQL query that uses only one table from my SQL Server database and works perfectly:

private void GetData()
{
    DateTime d = DateTime.Now;

    using (DataClasses1DataContext dc = new DataClasses1DataContext())
    {
        var qte = dc.ENTREES_STOCKS.AsEnumerable()
                    .Where(x => x.ENTSTK_LOT == lot)
                    .Where(x => x.ART_CODE == artCode)
                    .Where(x => x.ENTSTK_USER == null)
                    .Select(s => new 
                                 {
                                     art = s.ART_CODE,
                                     date = s.ENTSTK_DTENTREE,
                                     numLot = s.ENTSTK_LOT,
                                     pnet = s.ENTSTK_PNET,
                                     nbu = s.ENTSTK_NBU
                                 })
                    .GroupBy(g => new { g.art, g.date, g.numLot })
                    .Select(n => new 
                                 {
                                    n.Key.art,
                                    n.Key.date,
                                    n.Key.numLot,
                                    pnet = n.Sum(x => Math.Round(Convert.ToDecimal(x.pnet), 2)),
                                    nbu = n.Sum(x => Math.Round(Convert.ToDecimal(x.nbu), 2)),
                                  });
        QEntreeTB.Text = qte.First().pnet.ToString();
        NbuEntreeTB.Text = qte.First().nbu.ToString();
    }
}

How could I modify this code to join other tables to this query like :

private void GetData()
{
        DateTime d = DateTime.Now;
        using (DataClasses1DataContext dc = new DataClasses1DataContext())
        {

             var qte = dc.ENTREES_STOCKS.AsEnumerable()
             // Thoseline of codes of course doesn't work
             join art in dc.FICHES_ARTICLES on ENTREES_STOCKS.ART_CODE equals art.ART_CODE
             join ent in dc.STK_ENT on art.ART_CODE equals ent.ART_CODE
             ....
             //
                 .Where(x => x.ENTSTK_LOT == lot)
                 .Where(x => x.ART_CODE == artCode)
                 .Where(x => x.ENTSTK_USER == null)

                 .Select(s =>
                 new
                 {
                     art = s.ART_CODE,
                     date = s.ENTSTK_DTENTREE,
                     numLot = s.ENTSTK_LOT,
                     pnet = s.ENTSTK_PNET,
                     nbu = s.ENTSTK_NBU
                 }
             )
             .GroupBy(g => new { g.art, g.date, g.numLot })
             .Select(n =>
                 new
                 {
                     n.Key.art,
                     n.Key.date,
                     n.Key.numLot,
                     pnet = n.Sum(x => Math.Round(Convert.ToDecimal(x.pnet), 2)),
                     nbu = n.Sum(x => Math.Round(Convert.ToDecimal(x.nbu), 2)),
                 }
             );
             QEntreeTB.Text = qte.First().pnet.ToString();
             NbuEntreeTB.Text = qte.First().nbu.ToString();
        }
    }

Or is there à way to code this query another way ?? Because in fact i just want to join multiples tables, groupby some fields and sum others fields.

Firstly, calling AsEnumerable is a bit redundent. Then you can simply use the Join extension method.

var qte = dc.ENTREES_STOCKS
                 .JOIN(dc.FICHES_ARTICLES,art=>art.ART_CODE, stock => stock.ART_CODE)
                 .JOIN(dc.STK_ENT,ent => ent.ART_CODE,stock => stock.ART_CODE)
                 .Where(x => x.ENTSTK_LOT == lot)
                 .Where(x => x.ART_CODE == artCode)
                 .Where(x => x.ENTSTK_USER == null)
                 ....

You can find more answers here: https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/ef/language-reference/method-based-query-syntax-examples-join-operators

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM