Posts by Rodrigo Kono • 126 points
5 posts
-
1
votes1
answer59
viewsA: How do I reference Entity Framework 6 from . Net Core Class Library?
Entityframework 6 is not supported in . NET Core. For . NET Core you need to use Entity Framework Core. You can use EF6 with projects made using VS2017 or .NET Core Tools, but referencing the full…
-
0
votes1
answer222
viewsA: Command "dotnet run" too slow
It was supposed to be just the opposite. Via . NET CLI be faster. Do a test with dotnet run nomedoprojeto and then with dotnet nomedoprojeto.dll. Running directly on dll the difference is…
-
7
votes2
answers1493
viewsA: What can I do in . NET Framework and . NET Core not? And vice versa
To have the answer and understanding of this question, first you need to look at the image below that exemplifies well the current status of the platform . NET: There are two Frameworks. Being the…
-
2
votes1
answer641
viewsA: How to generate Microsoft Excel spreadsheets in . NET Core?
As you mentioned yourself, this support is still open. As can be seen in Issues from the repository on Github. There are two alternatives: A standard implementation of the Open XML SDK 2.5. You need…
-
1
votes1
answer157
viewsA: Communicate ASP.NET with Windows Forms
Socket is not the best way to make this communication between systems by sending files. For tip-edge short messages, it is valid. The best in case, is you work with a WCF service that will…