Syntax of LINQ GroupBy Method in C#
We are continuing our series dedicated to LINQ technologies with a more detailed look at some...
Different types of LINQ queries: Query Syntax and Method Syntax
The current article continues the series about LINQ. The previous part introduced the LINQ technologies and demonstrated its usage on some...
LINQ to Entities – Tutorial with Examples
When we think about querying databases, the first thing that pops to mind is usually some SQL query. Then other questions arise in regards...
LINQ to XML: Easy Work in C#
LINQ to XML is an in-memory XML programming interface that enables XML manipulation. Similar to the...
Entity Framework – Just a Few Clicks Away
Entity Framework is an open-source object-relational mapping (ORM) framework for .NET applications. It let the developers work with data on...
LINQ in C#: A tutorial with Query Examples in LINQ to Objects
Less is more – this is definitely true when it comes to object collections and LINQ queries. One of the most valuable advantages is the...
Functional F# that slowly appears in C#
For some reason, we often do not use this functionality. Maybe we haven’t got used to it yet. And...
Using Expressions to Filter Data of Database
I would like to start with a description of the problem that I encountered. There are entities in the database that need to be...
Generic Repository Pattern in Entity Framework
A Repository mediates between the domain and data mapping layers, acting like an in-memory domain object collection. Client objects...
LINQ: Dynamic Creation of Query Filters
Sooner or later, each developer has to create data tables with the possibility to sort by columns....