Lambda Calculus via C# (5) Boolean Logic
2018-11-05
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
2018-11-04
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
2018-11-03
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
2018-11-02
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
2018-11-01
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
2018-10-30
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
2018-09-30
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)
2018-09-29
Parallel LINQ provides additional query methods and additional overrides for Aggregate method:
2752 words
|
14 minutes