Blog Main Page

PlayingWithExpressions – Part 1: Introduction and Reviewing Basic Topics

In this six-part series, we want to experiment with expression trees and create two Enumerable and Queryable extensions helping us search through a collection of objects using a string keyword and list of properties in which we want to search. In the initial part of this article, we establish a foundational understanding of Delegates, Lambdas, and Expression Trees in C#. Delegates serve as references to methods, enabling dynamic method invocation. We exemplify their usage through a simple addition operation. Furthermore, we explore generic delegate types Func and Action, showcasing their application in function representation without custom type declarations. Lastly, we introduce the concepts of normal expressions and expression trees, emphasizing their differences and demonstrating how expression trees enable dynamic code manipulation. In the subsequent four posts, we delve into each component in detail, and the final post showcases practical experimentation with the code. Stay tuned for an in-depth exploration of C# coding concepts.

Read more →

Book Summary: Flow Architectures: The Future of Streaming and Event-Driven Integration by James Urquhart - February 2021

The book Flow Architectures is a valuable resource for understanding flow architecture in distributed event-driven systems. It covers essential topics in the first four chapters, introducing engineers to flow concepts, reasons for adopting flow architecture, techniques to assess existing components, and a literature review of technologies for implementation. It is a must-read for software engineers looking to adopt distributed event-driven architecture before diving into other educational resources.

Read more →