C# Refresh

Nonsultant
49.7K views

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content
Previous: Attributes

Fluent API

A fluent API is a sequence of chained function calls, often arranged in a way that reads like an English sentence:

someObject.ShouldNotifyFor(x => x.FirstName).And(x => x.FullName).When(x => x.FirstName = "Floyd").ToResult(); 

Fluent API is a design pattern. The pattern was initially described by Martin Fowler in his article on Fluent Interface, and the main idea is to make code which is readable to ordinary written prose.

The code build on the design Builder design pattern. And as the reader notice in the code example above make the code an extensive use of lambda expressions, which is quite normal for Fluent API .

Existing fluent APIs

There is a lot of existing fluent APIs for C#, some of them are:

Your own fluent API

As applications becomes more complex, can the development of a custom fluent API be a good investment, as fluent APIs gives the possibility to create a domain-specific language. Which makes is possible to describe complex business logic in few lines of fluent API (if of course it's implemented in the API).

As with all other APIs, designing fluent APIs is not an trivial task, as you will need to find a balance locking in the developer using the API or giving open access. The problem is that it's almost impossible to foresee how the users of your API is planning to use the API.

When designing you fluent API can it be a good trick to try to tell all the "stories" that you can think the users are going to implement with the API. This can be done be creating a tree of actions which you are imaging the user to perform, and in that way document the path you expect or limit the user to follow.

A path consist of fluent methods, and these could be categorized into either starting, context or exit methods:

  • Start methods: Initializes the execution of a path
    • eg: StartX(), QueryX(), UpdateX(), SelectX()
  • Context methods: Specify the information within a path (between start and end)
    • eg: WithX(), WithoutX(), UsingX(), AddX(), RemoveX()
  • Exit methods: Ends execution of a path, initialized by a start method, defines what should be the output of the path
    • eg: ApplyX(), AttachX(), ToX(), And(), Or()

Example of custom fluent API

Fluent API and lambda expressions

Fluent APIs are often use in combination with Lambda expressions.

For instance in LINQ:

var personsAbove18 = myPersonContext.Where(p => p.Age => 18).ToList();

Example of fluent with lambda

Try to change the order of the Has and WithArms methods in the Main-method

Open Source Your Knowledge: become a Contributor and help others learn. Create New Content