Posts by Alexandre França • 101 points
4 posts
-
3
votes1
answer64
viewsA: I need help to transform this SQL into a LINQ
I managed to solve guys, I’ll leave here in case someone needs to take something as an example.. Thank you... var Conferencia = (from Conferencia_Tb_conferencia in db.conferenciaConferencias join…
-
3
votes1
answer64
viewsQ: I need help to transform this SQL into a LINQ
I have the following SQL: select conferencia.tb_conferencia.con_codigo, con_pedido, count(coi_codigo) as countItens, count(distinct cic_conferencia_item) as countItensConferidos from…
-
-1
votes1
answer811
viewsA: How to display 2 BD tables inside a Datagridview in the application?
I had the same problem... so I solved it like this: I got the JSON returned from Webapi which in my case is like this: { "ped_codigo": 1, "ped_empresa": 1, "emp_razao": "1-EMPRESA", "ped_cliente":…
-
4
votes2
answers10681
viewsQ: Grabbing all the Values of a JSON Object
I wonder how to get all the values of a part of the JSON: { "Message": "The request is invalid.", "ModelState": { "produto.pro_descricao": ["Informe a descrição do Produto."], "produto.pro_grupo":…