Lambda Calculus via C# (5) Boolean Logic
After defining Boolean values True and False with functions, now the Boolean logics can be encoded, by functions too.
691 words
|
3 minutes
Lambda Calculus via C# (4) Encoding Church Booleans
After clarifying the concepts and terms, a lot of implementation coding starts from this part.
699 words
|
3 minutes
Lambda Calculus via C# (3) Fundamentals - Function composition
It may not be the best place to discuss function composition in the lambda calculus series. However, function composition will be used a lot in later articles, so here is a brief introduction.
450 words
|
2 minutes
Lambda Calculus via C# (2) Fundamentals - Lambda Expression, Variables, Reductions
The C# lambda expression . This post will explain lambda expression and other concepts in lambda calculus.
702 words
|
4 minutes
Lambda Calculus via C# (1) Fundamentals - Closure, Currying and Partial Application
C# is discussed in detail used everywhere in the . This post and the follo
1425 words
|
7 minutes
Entity Framework Core and LINQ to Entities (9) Performance
The previous parts has discussed some aspects that can impact the performance of EF/Core and LINQ to Entities, and here is a summary:
3397 words
|
17 minutes
Parallel LINQ in Depth (4) Performance
Parallel LINQ is powerful, but also can be more complex. This part discusses Parallel LINQ query performance in different cases.
1049 words
|
5 minutes
Parallel LINQ in Depth (3) Query Methods (Operators)
Parallel LINQ provides additional query methods and additional overrides for Aggregate method:
2752 words
|
14 minutes