Time Zones Supported By .NET on Windows 10

For some reason I had a hard time finding a list of the Time Zones supported in .NET. Apparently this is because they are defined in the registry at HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Time Zones on Windows, and in the ICU library on Linux and macOS. I fired up LinqPad and quickly retrieved these using TimeZoneInfo.GetSystemTimeZones() ReadOnlyCollection<TimeZoneInfo> (138 items)4 BaseUtcOffset DaylightName DisplayName Id …

Discount Azure and Office 365 Hosting

WeGotCode.com, a Microsoft Partner and Cloud Solutions Provider is happy to announce that we are offering hosting services for the following products for businesses. Office 365 Enterprise and Microsoft 365 (new for 2019) Office 365 Business (for smaller businesses) Microsoft Azure cloud hosting (applications, databases, virtual machines, domain servers, etc.) Dropbox for business And most other cloud based services! Thanks …

EF Core – Get the db schema name of an Entity

I’m currently working on a project using EF Core, and the database uses various schema names to segregate data types.  I was having a hard time finding a way at run-time (in and override of SaveChanges() actually) to get back out the schema name of the table associated with an entity.  This was the best I could come up with …