Posts by woshington rodrigues • 11 points
2 posts
-
0
votes0
answers50
viewsQ: select IN using Entity query
How do I play the following query using Ef core, or in LINQ? SELECT ob.PK_OBJETIVO, ev.NM_EVENTO, ifi.QT_NOTA_IMPACTO, imi.QT_NOTA_IMPACTO, ire.QT_NOTA_IMPACTO, (ifi.QT_NOTA_IMPACTO +…
linq-to-entitiesasked woshington rodrigues 11 -
0
votes1
answer139
viewsQ: Grouping in LINQ with multiple entity records
I have a LINQ query that averages a list of Notes grouped by risk sources. var mediaControles = await (from ac in _context.AvaliacaoControle join c in _context.Controle on ac.ControleID equals…