There's still a lot, but it's now more or less comparable to what you'd expect you'd end up with on a similar app built on, say, FastAPI.
Understanding the .NET ecosystem: The evolution of .NET into .NET 7
11–20 of 357 posts
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#12Coming from NodeJS, the amount of stuff that could be added with a single line from an official package was great. No more worrying about hundreds of unvetted dependencies.
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#13It’s a tired thing to say, but the “.NET” naming is so confusing on what’s what. Which is sad because there’s so much to like about .NET
Assuming you're not looking at legacy and are on .NET 5.0+ it's not confusing, it's just the one ecosystem, no core or framework stuff, just .Net. If you're before that, well, good luck.
Except the docs, which still say core all over the place, including the url's. ;-)
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#14Been using .NET for years now for backend web development after having taken a break from C#. It is such an improvement over the old .NET framework. When I started building my first backend with it, I was surprised how much was included and "just worked". Need to add authentication? Few lines. OAuth? Also built in. Response caching? Yes. ORM? EF Core is pretty good. Need to use env variables to override your JSON con…
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#15It’s a tired thing to say, but the “.NET” naming is so confusing on what’s what. Which is sad because there’s so much to like about .NET
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#16It’s a tired thing to say, but the “.NET” naming is so confusing on what’s what. Which is sad because there’s so much to like about .NET
2. .NET "Framework" ... I tell myself "F is for Former." This is the older, Windows specific version.
3. .NET "Standard" ... I tell myself "S is for Specification." This is just the spec which defines what Core and Framework must implement.
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#17Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#18Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#19It’s a tired thing to say, but the “.NET” naming is so confusing on what’s what. Which is sad because there’s so much to like about .NET
1. .NET "Core" ... I tell myself "C is for Cross platform." This is usually what people seem like they mean now when they talk about ".NET". 2. .NET "Framework" ... I tell myself "F is for Former." This is the older, Windows specific version. 3. .NET "Standard" ... I tell myself "S is for Specification." This is just the spec which defines what Core and Framework must implement.
Where it still gets a bit murky is:
> “ .NET has many different implementations, including the .NET Framework, Mono, and Unity. Each of these is a separate platform with separate Base Class Libraries (BCLs) and app models. .NET Core is another separate platform.”
Re: Understanding the .NET ecosystem: The evolution of .NET into .NET 7
#20It’s a tired thing to say, but the “.NET” naming is so confusing on what’s what. Which is sad because there’s so much to like about .NET