Posts by wellington • 66 points
2 posts
-
3
votes0
answers132
viewsQ: Error generating Migrations Entitycore for Mysql
Following guys I’m trying to use the new Efcore being that with Mysql, I installed the following packages nuget: Install-Package Mysql.Data.Entityframeworkcore -Pre Install-Package…
-
2
votes1
answer4967
viewsA: Doubt about factorial in C#
int fatorial = 1; for (int n = 1; n <= 10; n++) { fatorial*=n; Console.WriteLine(n+" fatorial= "+fatorial); } 1 factorial= 1 2 factorial= 2 3 factorial= 6 4 factorial= 24 5 factorial= 120 6…
c#answered wellington 66