Banner Image
Jürgen Bäurle
Projects  ·  Work  ·  Blog  ·  Contact

FluentSP - The Fluent SharePoint API

The FluentSP .NET library implements a modern fluent interface around the classic SharePoint API. By using FluentSP instead of the classic SharePoint API, you will be able to chain methods and act on sets of items of the underlying SharePoint objects.

The code below shows how to access each item of the Tasks list of the current SharePoint site:

		SP.CurrentSite()
		     .Web("Home")
		       .List("Tasks")
		         .Items()
		         .ForEach(i => /* Do your work here! */ );
		

Check out the project site at GitHub for more sample code and information.

Download from GitHub

Download from CodePlex (OLD)

IMPORTANT: The project is not actively maintained anymore. Just fork it and do whatever you like! Or forget about it!