Improve the performance of a slow-running LINQ query image
Improve the performance of a slow-running LINQ query

Improving the performance of a slow-running LINQ query—especially when using Entity Framework or LINQ to SQL

6 month ago | 481 |
Managing Application State with Routing in Knockout.js SPAs image
Managing Application State with Routing in Knockout.js SPAs

SPA, routing and state management go hand-in-hand. Routing determines what the user sees, while the application state determines how the view behaves.

8 month ago | 298 |
SQL Injection and Prevention in C# image
SQL Injection and Prevention in C#

SQL Injection is a common security vulnerability that occurs when an attacker manipulates SQL queries by injecting malicious input, potentially allowi

10 month ago | 819 |
How to Verify Connection Pooling is Used in ADO.NET? image
How to Verify Connection Pooling is Used in ADO.NET?

Connection pooling in ADO.NET allows reusing database connections instead of creating new ones for every request.

10 month ago | 593 |
How to use Transaction in ADO.NET? image
How to use Transaction in ADO.NET?

Here’s a full C# console application demonstrating ACID properties using ADO.NET with SQL Server.

10 month ago | 541 |
ADO.NET DataSet Class image
ADO.NET DataSet Class

The DataSet class in ADO.NET is a disconnected, in-memory representation of data. It can store multiple DataTable objects, along with relationships, c

10 month ago | 575 |
Proof of Disconnected Data Access in ADO.NET image
Proof of Disconnected Data Access in ADO.NET

disconnected data access means fetching data from a database, working with it in-memory (using DataSet, DataTable, or DataView), and not maintaining a

10 month ago | 678 |
ADO.NET SqlCommand Class image
ADO.NET SqlCommand Class

The SqlCommand class in ADO.NET is used to execute SQL queries, stored procedures, and commands against a SQL Server database.

10 month ago | 629 |
When to Use ADO.NET? image
When to Use ADO.NET?

ADO.NET is best suited for scenarios where you need to interact with a database in a structured and efficient manner.

10 month ago | 466 |
Generate SEO-Friendly Slugs from Titles in ASP.NET Core image
Generate SEO-Friendly Slugs from Titles in ASP.NET Core

Generate SEO-Friendly Slugs from Titles in ASP.NET Core

10 month ago | 580 |