FluentBuilder 0.7.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package FluentBuilder --version 0.7.1
NuGet\Install-Package FluentBuilder -Version 0.7.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FluentBuilder" Version="0.7.1">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FluentBuilder --version 0.7.1
#r "nuget: FluentBuilder, 0.7.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FluentBuilder as a Cake Addin
#addin nuget:?package=FluentBuilder&version=0.7.1

// Install FluentBuilder as a Cake Tool
#tool nuget:?package=FluentBuilder&version=0.7.1

Usage

1️⃣ Annotate a class

Annotate a class with [AutoGenerateBuilder] to indicate that a FluentBuilder should be generated for this class:

[AutoGenerateBuilder]
public class User
{
    public string FirstName { get; set; }

    public string LastName { get; set; }

    public DateTime? Date { get; set; }
}

2️⃣ Define a class which needs to act as a builder

This scenario is very usefull when you cannot modify the class to annotate it.

Create a public and partial builder class

And annotate this class with [AutoGenerateBuilder(typeof(XXX))] where XXX is the type for which you want to generate a FluentBuilder.

[AutoGenerateBuilder(typeof(UserDto))]
public partial class MyUserDtoBuilder
{
}

Use FluentBuilder

using System;

namespace Test;

class Program
{
    static void Main(string[] args)
    {
        var user = new UserBuilder()
            .WithFirstName("Test")
            .WithLastName("User")
            .Build();

        Console.WriteLine($"{user.FirstName} {user.LastName}");
    }
}

For more information, see the StefH/FluentBuilder.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on FluentBuilder:

Repository Stars
WireMock-Net/WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on the functionality from http://WireMock.org, but extended with more functionality.
StefH/FluentBuilder
A project which uses Source Generation to create a FluentBuilder for a specified model or DTO
Version Downloads Last updated
0.9.0 1,151 4/8/2023
0.9.0-preview-01 62 4/6/2023
0.8.0 321 4/3/2023
0.7.1 274 3/14/2023
0.7.1-preview-02 80 3/2/2023
0.7.1-preview-01 72 2/25/2023
0.7.0 5,114 9/20/2022
0.7.0-preview-01 85 9/16/2022
0.6.0 377 8/20/2022
0.5.1 1,548 7/28/2022
0.5.0 403 7/13/2022
0.4.9 4,087 6/25/2022
0.4.8 357 6/21/2022
0.4.7 350 6/4/2022
0.4.6 417 5/20/2022
0.4.5 361 5/16/2022
0.4.4 969 4/27/2022
0.4.2 389 4/3/2022
0.4.1 864 2/18/2022
0.4.0 342 2/18/2022
0.3.3 352 2/16/2022
0.3.2 353 2/16/2022
0.3.1 353 2/14/2022
0.3.0 347 2/12/2022
0.2.5 354 2/8/2022
0.2.4 377 2/6/2022
0.2.3 354 2/1/2022
0.2.2 358 1/31/2022
0.2.1 370 1/30/2022
0.2.0 399 1/30/2022
0.1.2 364 1/20/2022
0.1.1 356 1/15/2022
0.1.0 359 1/13/2022
0.0.11 1,322 8/10/2021
0.0.11-preview-01 181 8/10/2021
0.0.10 234 8/8/2021
0.0.10-preview-03 153 8/8/2021
0.0.10-preview-02 176 8/7/2021
0.0.10-preview-01 175 8/7/2021
0.0.9 336 8/7/2021
0.0.8 244 8/6/2021
0.0.7 379 8/5/2021
0.0.6 243 8/5/2021
0.0.5 292 8/5/2021
0.0.4 8,571 7/21/2021
0.0.3 254 7/19/2021
0.0.2 251 7/19/2021
0.0.1 267 7/18/2021

# 0.7.1 (14 March 2023)
- #50 Take the namespace of generated files from the RootNamespace property [enhancement]
- #51 Add support for parameterless constructors [enhancement]
- #41 Builder could handle classes without default constructor [enhancement]

The full release notes can be found here: https://github.com/StefH/FluentBuilder/blob/main/ReleaseNotes.md