Entity Framework Pros and Cons: Choosing the Best Approach for Developers
Pros and Cons of Entity Framework database design approach given the analogy and differences between approaches.
Pros and Cons of Entity Framework database design approach given the analogy and differences between approaches.
Does the above exception message seem familiar to you and you must have faced it some time, maybe while using some versioning tool for your project like Git, TFS/TFVC, SourceSafe, etc or you might have a folder structure that ends…
How do you verify if the SQL Server connection you are using is encrypted or not? There is a way without using a network parser like netmon and verifying the connection encryption from the client using a simple query. The…
Getting the week number of the year from the DateTime object can be implemented proprietary-ly but Microsoft does provide a way to get this calculated with a built-in method. Here is the way you can achieve this:
You might have heard about a keyword called “yield“, It is a contextual keyword in .NET and it makes the method’s context an iterator, which means your method can serve the purpose of an iterator by using yield return. Using…
There might be a time when you came across a situation when you are trying to load data in DataGrid in your WPF UI and UI gets Hanged (stuck) while the data is being loaded. You need to avoid this…
Following is the list of keyboard shortcuts that are supported by almost all modern web browsers: Ctrl+1-8 – Switch to the specific tab, count from the left. Ctrl+9 – Switch to the last tab. Ctrl+Tab – Switch to the next tab. Ctrl+Shift+Tab – Switch…
When writing Windows applications or services, Windows have a nice built-in tool called Event Viewer or Event Logs that can be used for logging purpose and helps greatly in debugging and tracing the applications’ critical logs. One can log the…
While writing a .NET application, we often need to create our own custom configurations and custom configs group (aka. Config Sections). Assuming that you already have appsettings.json added into your project and you are already reading the configuration values from…
A partial class is an ability to separate the implementation of a single class into multiple files and these files are combined to create in a single class when the code is compiled. Partial classes are created by using the…