Posts by Levyh Nunes • 73 points
4 posts
-
2
votes1
answer158
viewsQ: Error generating production report - Reportviewer Version 11
I am working with webforms and generating a report in reportviewer locally, the report accepts parameters and has a dataset // Parametros List<ReportParameter> parametersReport = new…
-
0
votes2
answers45
viewsA: Group select and return exact amount
You would have to know the current page before making the Tolist(), something like : int numeroDeObjPorPagina = 10; base.Get(queryParameters) .GroupBy(x => new { x.Id })…
-
1
votes1
answer381
viewsA: Modal opening under another modal
You have to increase a second modal css attribute called "z-index" to get it above the first modal. There is already a good answer to this, follow the jsfiddle link…
asp.net-mvcanswered Levyh Nunes 73 -
1
votes1
answer61
viewsA: Extraction of different data from two object lists
To use Except you need to implement Iequalitycomparer https://msdn.microsoft.com/pt-br/library/bb300779(v=vs.110). aspx But you can also do so: // retorna os jogos não contidos no "jogosJogadorTem"…