Posts by Joandreiy Cordeiro • 381 points
13 posts
-
0
votes0
answers24
viewsQ: Entityframework Core 5 does not connect to SQL Server 2008
I installed dotnet core 5 on Ubuntu 21.04. I created a webapi project with VS Code and managed to run everything smoothly. I installed EF5 to the project and am trying to connect to SQL Server 2008…
-
0
votes1
answer30
viewsQ: Create two Reactjs apps in the same project by sharing node_modules
I am creating a project that has two Apps, one for administrative area and other for the user. Inside the project has the /admin and /user routes, everything works correctly, in the /src folder has…
reactasked Joandreiy Cordeiro 381 -
2
votes0
answers56
viewsQ: Add comment to the one column with Entity core framework Fluent api
How do I add a comment to a column. In sql I do so: ALTER TABLE Tabela MODIFY COLUMN 'nome' varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Teste' AFTER `nome`; How to do in…
-
2
votes1
answer481
viewsQ: @Angular in global and non-local repository for all projects
I installed @angular/cli like this: npm install -g @angular/cli I created a project like this: ng new name-project So far so good, but there is the possibility that when you create a project with…
-
-1
votes1
answer84
viewsQ: Domain Multiplus with Codeigniter
I have a hosting with two domains, domain 1.com.br and domain 2.com.br. How Codeigniter is at the root of hosting, how do I, when i access the domain 1.com.br it take the content of the folder site1…
-
0
votes1
answer88
viewsQ: Application Service Visual Studio 2015
I created a service app in Visual Studio 2015 to get started the service needed to create an installer. I created a Visual Studio Installer project, filled in the parameters and everything worked.…
-
3
votes1
answer685
viewsQ: How to read browser logs?
I am creating an html page that should display the all browser logs (console.log). So that when there is a script error I can access this page and view the browser logs.
javascriptasked Joandreiy Cordeiro 381 -
3
votes2
answers478
viewsQ: Hybrid Web Application (MVC and Web API)
In Visual Studio when we create a web project it gives you the options to mark: Webforms MVC Web API When MVC + Web API frame the two are in the same project. There is some advantage/performance in…
-
4
votes1
answer600
viewsQ: How do I know if a client is accessing the server over the local network or the internet?
How do I identify if the client who is accessing my application, whether it is within the company (local network) or outside (internet)?
-
3
votes1
answer57
viewsQ: What are the differences between these Nuget packages?
I use the Javascriptengineswitcher.Msie package in my webapps on Asp.net mvc, I found 2 more Javascriptengineswitcher packages what’s the difference between them what the pros and cons are?…
-
2
votes1
answer1899
viewsQ: Calling the browser digital certificate
How do I call the browser digital certificate so that my webapp on Asp.net mvc can sign an xml and then return it to the user? I have seen features that use java or another applet, but I would not…
-
4
votes1
answer5050
viewsQ: How to Read MFD Files Tax Hard Disk Printer
Is there any way to read MFD file tax printer that is on hard drive? These files are binary there is some way to read binary files and save with txt? Printer: BEMATECH MP-2100 FI…
-
4
votes5
answers758
viewsQ: How to embed CSS in HTML tags?
I have a CSS file containing the following code. .texto{ Color: Red; } I have the HTML file with these tags: <html> <body> <span class="texto">TEXTO 1<span> <span…