Posts by Marcello Barbiani • 11 points
2 posts
-
0
votes1
answer44
viewsA: I cannot connect to Database in Entity Framework
Probably the dotnet "Ef" command was not found, either because it was not installed, or because it was not in your PATH. To install do: dotnet tool install --global dotnet-ef To place in PATH, so…
-
1
votes2
answers1100
viewsA: Why in the debug of C++ accented words and c cedilla appearing uncompromised?
Use: #include<tchar.h> Then use: _tsetlocale(LC_ALL, _T("portuguese")); From now on you can send cout << "qq coisa com acentos"; that will work!…
c++answered Marcello Barbiani 11