Posts by Leandro Belo • 121 points
7 posts
-
-1
votes1
answer29
viewsQ: LINQ query for object with a sub-list
I have the following structure: public class Insumo{ public int Insumo_id { get; set; } public List<InsumoDados> Dados{ get; set; } } public class InsumoDados{ public int Desc { get; set; }…
-
2
votes1
answer146
viewsQ: Use variable value not yet declared. Circular Reference in c#
I know the question seems absurd but a client of mine gave me an excel spreadsheet that has a variable that is used before having its calculation defined. In excel this calls Circular Reference. I…
-
2
votes0
answers525
viewsQ: Access SQL Server Express remotely on the Google Cloud Platform
I have a server in GCP and everything is working correctly(IIS, SQL Server...). But I’d like to remotely access a database that’s on that server. I’ve done this procedure before:…
-
2
votes1
answer298
viewsQ: How to make a SUM in different table fields in the Entity Framework?
That’s the SQL that I have as an example, I would like to do the same with Linq? select SUM(iv.precoMediano * oi.quantidade) as total from orc_orcamentoItem oi inner join orc_insumoValor iv on…
-
0
votes0
answers39
viewsQ: Login to Kooboo CMS admin with Active directory
I am in a project where the client wants the login in the CMS admin to be done through Active Directory. The CMS we are using is Kooboo based on aspnet MVC. Has anyone ever done anything like this?…
-
-1
votes1
answer9144
viewsQ: Load values after changing combobox(Select)
Like selecting the value of a combobox at the same time some textbox are loaded? It’s a user edition. I know this should be done in JS, someone could tell me how?
-
5
votes1
answer1123
viewsQ: Why is this Bootstrap Tabs configuration not working?
The code is as follows:: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Site</title> <link href="css/bootstrap.css" rel="stylesheet" type="text/css">…