home / developersection / tag
You haven’t finished your post yet. Are you sure you want to leave and discard your draft?
Improving the performance of a slow-running LINQ query—especially when using Entity Framework or LINQ to SQL
the most powerful and elegant features in C#. It allows you to query collections, databases, XML.
Anonymous methods in C# are a powerful feature that allows you to define inline methods without giving them a name.
C# allow objects to be indexed like arrays. This is useful when your object represents a collection of values and you want to access its elements as an array
They are a powerful way to annotate classes, methods, properties, and other program elements with additional information
strings are used to store sequences of characters like names, sentences, file paths, and more.
C# Operators — including arithmetic, logical, comparison, assignment, bitwise, and more — with examples and descriptions
SQL Injection is a common security vulnerability that occurs when an attacker manipulates SQL queries by injecting malicious input, potentially allowing unautho
Connection pooling in ADO.NET allows reusing database connections instead of creating new ones for every request.
Here’s a full C# console application demonstrating ACID properties using ADO.NET with SQL Server.
The DataSet class in ADO.NET is a disconnected, in-memory representation of data. It can store multiple DataTable objects, along with relationships, constraints
disconnected data access means fetching data from a database, working with it in-memory (using DataSet, DataTable, or DataView), and not maintaining an active c