Tools Resharper One of the most popular productivity tool for Visual Studio users. The need for Resharper is reduced for the recent few years though. I’m simply so familiar with it and it’s muscle memory now. ChatGPT and GitHub Copilot A LLM based support is key productivity tool for developer since it’s introduced. The more… Continue reading Tools for .Net developers in 2024
Category: SQL
A DotNet developer’s view about Technology Radar V26
As a new Technology Radar release with a bunch of interesting techs, a few drew my attention. Techniques Single team remote wall. This can be useful in a remote team. Documentation quadrantsDocumentation can be one of these. Tutorials, Discussions, How-To Guides, or References. And more tips on documentation. Rethinking remote standups. The daily stand-up is… Continue reading A DotNet developer’s view about Technology Radar V26
EF Core 7 deadly sin
Load testing tool Bombardier https://github.com/codesenberg/bombardier EF Core 7 deadly sin Get only the rows that you need Casting IQueryable -> IEnumerable use .Count() from IQueryable rather than IEnumerable, which will query all data and parsing all. Not using AsNoTracking Can be faster 4x times. Explicit joins Select and map to the object directly rather… Continue reading EF Core 7 deadly sin
Introduction to NoSQL in one page
The data model of NoSQL NoSQL emerged to solve the problem of the difficulty of running SQL on a cluster. i.e. scaling out. This leads me to think that if you can handle the amount of data, Big Data, in a single SQL box, you may not need NoSQL. Most NoSQL, as described below as… Continue reading Introduction to NoSQL in one page
SQL Intellisense – You must use
I know some developers are good enough to code without intellisense. But I’m not as I started coding with Visual Studio so I live with intellisense from day one. Intellisense is like an iPhone to everyday people living in 21 century. I was pretty happy with the intellisense and other intelligent support from Visual Studio… Continue reading SQL Intellisense – You must use