Posts by Bruno Jesus Santos • 11 points
6 posts
-
0
votes0
answers539
viewsQ: Open VS Code Projects for VS 2017
I own the layered architecture that was created in Visual Studio Code : When opening in Visual Studio 2017 besides it does not open all files : When running the project by selecting the Web.Api…
-
-1
votes3
answers1529
viewsA: Eliminating duplicate values in SQL
Following your example I managed to do with the following select : SELECT Conhecimento, NumeroNF, Empresa, SUM(FreteCobrado) FROM Teste GROUP BY Conhecimento, NúmeroNF, Empresa And that ?…
-
0
votes1
answer516
viewsA: Firebird with restfull service and web api in C#
Through the Web Api itself you can connect in Firebird. See if that libk helps you : http://johntomaselli.blogspot.com.br/2012/04/mvc-4-firebird-ef-41-and-database-first.html…
-
0
votes1
answer68
viewsQ: Rotating alternative in Azure
I use the rotary on my system, but when running the same on Azure as a Web Application because the Azure does not allow file execution .exe. So I need some other Framework which replaces the rotary…
-
1
votes1
answer1208
viewsQ: Json return error {"isFulfilled":false,"isRejected":false} + Node
I have the following code in the Node : var express = require('express'); var app = express(); app.get('/api/events', function(req, res, next) { var events = repositorio.ListAll(); res.json(events);…
-
0
votes1
answer80
viewsQ: Error in separating responsibilities
On Node, I created the following template to represent my user: "use strict"; var Sequelize = require('sequelize'); module.exports = function() { return sequelize.define('user', { ID_USER: { type:…