angular excel sheet download link
Friday, 25 April 2025
Thursday, 10 April 2025
upgrade the dotnet version
✅ 1. Update SDK and Runtime
-
Install .NET 8 SDK on your machine.
You can verify it using:
bashdotnet --version
✅ 2. Update Target Framework in .csproj
Open your .csproj
file and update the TargetFramework
:
xml<TargetFramework>net8.0</TargetFramework>
If you're using a multi-target project or want to support other platforms, update accordingly.
✅ 3. Update NuGet Packages
Update all NuGet packages to their compatible .NET 8 versions.
You can do this via the terminal:
bashdotnet list package --outdated dotnet add package <PackageName> --version <LatestVersion>
Or use Visual Studio NuGet Package Manager to upgrade.
✅ 4. Review and Update Code for Breaking Changes
Check the official Microsoft breaking changes list: 📘 ASP.NET Core Breaking Changes in .NET 8
Examples:
-
Minimal APIs may have changes in how they handle results.
-
Changes in JSON serialization with
System.Text.Json
. -
Middleware updates, especially if you're using custom authentication/authorization.
✅ 5. Optional: Upgrade EF Core (if used)
If you're using Entity Framework Core:
Update the EF Core NuGet packages to version 8.x
.
Update your DbContext configuration if any new changes are needed. Review EF Core 8 breaking changes: 📘 EF Core 8 Breaking Changes
✅ 6. Clean and Rebuild
dotnet clean dotnet build
Then run the app:
dotnet run
Wednesday, 9 April 2025
find the duplicates between two users
delete FROM tbl_Users
WHERE User_ID = 'cgius'
AND Site_Location IN (
SELECT b.Site_Location
FROM tbl_Users a
JOIN tbl_Users b
ON a.Site_Location = b.Site_Location
WHERE a.User_ID = 'cccook'
AND b.User_ID = 'cgius'
)
-
Points 1.complex page layouts and adherence to code standards. 2.primeNG pagination 3.ngcontent 4.ngdestory(memorylekage) 5.datatransfer wi...
-
Check duplicate count based on 3 columns combo select EMPID,FORMinfoID,FormName,Count(*) as counts from tbl_FilesMigrationLogs group by Em...