FluentBuilder 0.9.0-preview-01
See the version list below for details.
dotnet add package FluentBuilder --version 0.9.0-preview-01
NuGet\Install-Package FluentBuilder -Version 0.9.0-preview-01
<PackageReference Include="FluentBuilder" Version="0.9.0-preview-01"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
<PackageVersion Include="FluentBuilder" Version="0.9.0-preview-01" />
<PackageReference Include="FluentBuilder"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add FluentBuilder --version 0.9.0-preview-01
#r "nuget: FluentBuilder, 0.9.0-preview-01"
#addin nuget:?package=FluentBuilder&version=0.9.0-preview-01&prerelease
#tool nuget:?package=FluentBuilder&version=0.9.0-preview-01&prerelease
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.
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.10.0 | 8,417 | 6 months ago | |
0.10.0-preview-01 | 62 | 6 months ago | |
0.9.2 | 3,956 | 8 months ago | |
0.9.1 | 364 | 8 months ago | |
0.9.0 | 34,518 | 4/8/2023 | |
0.9.0-preview-01 | 130 | 4/6/2023 | |
0.8.0 | 444 | 4/3/2023 | |
0.7.1 | 429 | 3/14/2023 | |
0.7.1-preview-02 | 190 | 3/2/2023 | |
0.7.1-preview-01 | 181 | 2/25/2023 | |
0.7.0 | 9,677 | 9/20/2022 | |
0.7.0-preview-01 | 163 | 9/16/2022 | |
0.6.0 | 482 | 8/20/2022 | |
0.5.1 | 1,901 | 7/28/2022 | |
0.5.0 | 500 | 7/13/2022 | |
0.4.9 | 4,678 | 6/25/2022 | |
0.4.8 | 449 | 6/21/2022 | |
0.4.7 | 439 | 6/4/2022 | |
0.4.6 | 522 | 5/20/2022 | |
0.4.5 | 449 | 5/16/2022 | |
0.4.4 | 1,070 | 4/27/2022 | |
0.4.2 | 494 | 4/3/2022 | |
0.4.1 | 968 | 2/18/2022 | |
0.4.0 | 441 | 2/18/2022 | |
0.3.3 | 449 | 2/16/2022 | |
0.3.2 | 460 | 2/16/2022 | |
0.3.1 | 447 | 2/14/2022 | |
0.3.0 | 447 | 2/12/2022 | |
0.2.5 | 459 | 2/8/2022 | |
0.2.4 | 512 | 2/6/2022 | |
0.2.3 | 466 | 2/1/2022 | |
0.2.2 | 467 | 1/31/2022 | |
0.2.1 | 479 | 1/30/2022 | |
0.2.0 | 524 | 1/30/2022 | |
0.1.2 | 458 | 1/20/2022 | |
0.1.1 | 449 | 1/15/2022 | |
0.1.0 | 457 | 1/13/2022 | |
0.0.11 | 1,447 | 8/10/2021 | |
0.0.11-preview-01 | 238 | 8/10/2021 | |
0.0.10 | 336 | 8/8/2021 | |
0.0.10-preview-03 | 215 | 8/8/2021 | |
0.0.10-preview-02 | 248 | 8/7/2021 | |
0.0.10-preview-01 | 247 | 8/7/2021 | |
0.0.9 | 446 | 8/7/2021 | |
0.0.8 | 343 | 8/6/2021 | |
0.0.7 | 481 | 8/5/2021 | |
0.0.6 | 340 | 8/5/2021 | |
0.0.5 | 393 | 8/5/2021 | |
0.0.4 | 13,031 | 7/21/2021 | |
0.0.3 | 352 | 7/19/2021 | |
0.0.2 | 345 | 7/19/2021 | |
0.0.1 | 394 | 7/18/2021 |
# 0.8.0 (03 April 2023)
- #52 AttributeArgumentListParser : Update TryParseAsEnum [enhancement]
- #53 By default : generate only the With*** builder methods [enhancement]
The full release notes can be found here: https://github.com/StefH/FluentBuilder/blob/main/ReleaseNotes.md