Tvde1
✅ is there a difference between NET core and .NET and .NET framework ?
.NET Framework was the first to exist. It is Windows only.
In 2016, Microsoft decided to rewrite it and make it cross platform. That new codebase was called .NET Core
As of 2021, .NET core is renamed to .NET>
So:
* .NET = Newest version (use this)
* .NET Core = 2016-2021, deprecated
* .NET Framework = Windows only, used for legacy systems
6 replies
✅ is there a difference between NET core and .NET and .NET framework ?
It is not "important" per se to know how they differ. Just know that .NET is the current version, and .NET Core and .NET Framework are older and have their limitations, but might still be used by companies
6 replies
Populate `EnvelopeRecipientCollection` on `Recipients` Property of a `MailItem` in Transport Agent
I would build a layer between this external API and your business logic. That way you can test your business logic without needing to construct external models
14 replies
Making my functions more generic
it is a little bit complicated, but in this case, the LINQ is more performant.
Your example does:
1. Get all Stats from the database
2. Loop over all the stats
3. If it matches the tag name, add to dictionary
The example I showed uses
IQueryable
, which entity framework is built on to do the following
1. Only take from the database, all the Stats which match the tag name.
(This will do the query:
2. it loops over only the results which are found and makes a dictionary24 replies