Akov.DataGenerator 2.1.4

dotnet add package Akov.DataGenerator --version 2.1.4
                    
NuGet\Install-Package Akov.DataGenerator -Version 2.1.4
                    
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="Akov.DataGenerator" Version="2.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Akov.DataGenerator" Version="2.1.4" />
                    
Directory.Packages.props
<PackageReference Include="Akov.DataGenerator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Akov.DataGenerator --version 2.1.4
                    
#r "nuget: Akov.DataGenerator, 2.1.4"
                    
#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.
#addin nuget:?package=Akov.DataGenerator&version=2.1.4
                    
Install Akov.DataGenerator as a Cake Addin
#tool nuget:?package=Akov.DataGenerator&version=2.1.4
                    
Install Akov.DataGenerator as a Cake Tool

DataGenerator

alternate text is missing from this package README image alternate text is missing from this package README image

Data Generator. Give it a ⭐ if you find it useful.

ChangeLog <hr/>

${\color{grey}{Key \space features}}$

${\color{darkgreen}{Calculated \space properties}}$

Construct a property value using just generated values from the same object.

// Given: FirstName and LastName are randomly generated. The email is dynamically constructed. 
.Property(s => s.Email).Construct(s => $"{s.FirstName}.{s.LastName}@mycompany.com") 

${\color{darkgreen}{String \space templates}}$

Support placeholders for numbers, oneofs, resources, and file content, replacing them with values from the corresponding list.

A template like:

"Note: [number:100-999] [resource:Firstnames] [file:lastnames.txt:4-10] [oneof:Europe,America,Africa]"

could generate an output such as: Note: 137 Jessica Torres Africa.

[!Note] Specifying a range for numbers is required.

[!Note] The built-in Length(min, max) method is ignored when using templates.

${\color{blue}{Decorators}}$

Enhance the just generated random value using decorators.

.Property(s => s.Name)
    .Template("[resource:Nouns]")
    .Decorate(r => CapitalizeFirstLetter(r?.ToString()))

${\color{darkgreen}{Random \space generation \space rules}}$

Define rules for generating values, each associated with a probability.

// Generates a negative value in the range of [-5, -1) with a probability of 0.1 (10%).
.Property(s => s.Year)
    .Range(1,5)
    .GenerationRule("NegativeYear", 0.1, _ => Random.Shared.Next(-5, -1))

[!Note] The probability of using the default generation logic (P<sub>d</sub>) — when no specific generation rules apply — is calculated as: P<sub>d</sub> = 1 - ΣP<sub>i</sub>. Where P<sub>i</sub> represents the probability of each individual generation rule.

${\color{darkgreen}{Nullable \space rule}}$

Defines the probability of assigning a null value.

[!Note] The property type must be either nullable (T?) or a reference type with nullable annotations enabled (?).

// Precondition
class Student
{
    public string? FirstName {get; set; }
    public string LastName {get; set; }
}

// Great job :)
.Property(s => s.FirstName)
    .Template("[file:firstnames.txt]")
    .Nullable(0.25)

// Will throw an exception :(
.Property(s => s.FirstName)
    .Template("[file:lastnames.txt]")
    .Nullable(0.25)

${\color{darkgreen}{Predefined \space values}}$

Choose a value from the predefined collection.

.Property(s => s.Degree)
    .FromCollection(["Bachelor", "Master", "Doctor"])

${\color{darkgreen}{Ignore}}$

Excludes the property from the generation process.

scheme.ForType<StudentGroup>()
    .Ignore(s => s.CourseTeachers)

${\color{darkgreen}{Custom \space generators}}$

// A custom generator should inherit from `GeneratorBase<T>`
public class PhoneGenerator : GeneratorBase<string>
{
    private const char SpecialSymbol = '#';

    public override string CreateRandomValue(Property property)
    {
        var mask = property.GetValueRule("PhoneMask") ?? "### ### ###";

        var builder = new StringBuilder();
        Random random = GetRandomInstance(property);

        foreach (var c in mask.ToString()!)
            builder.Append(c != SpecialSymbol ? c : random.Next(0, 10).ToString());

        return builder.ToString();
    }
}

// Usage
.Property(s => s.Phone)
    .UseGenerator(new PhoneGenerator())
    .ValueRule("PhoneMask", "## ## ## ##")

${\color{black}{Generators}}$

  • BooleanGenerator
  • DateTimeGenerator
  • DateTimeOffsetGenerator
  • DecimalGenerator
  • DoubleGenerator
  • EmailGenerator
  • EnumGenerator
  • GuidGenerator
  • IntGenerator
  • IpGenerator
  • PhoneGenerator
  • SetGenerator
  • StringGenerator

${\color{black}{Example}}$ ➫

var scheme = new DataScheme();

//StudentGroup
scheme.ForType<StudentGroup>()
    .Ignore(s => s.CourseTeachers)
    .Property(s => s.Name).Template("[resource:Nouns]").Decorate(r => Utility.CapitalizeFirstLetter(r?.ToString()))
    .Property(s => s.Students).Count(3, 5)
    .Property(s => s.ContactPhones).Count(2, 3).UseGenerator(new PhoneGenerator());

//Student
scheme.ForType<Student>()
    .Property(s => s.FirstName).Template("[resource:Firstnames:3-4]")
    .Property(s => s.LastName).Template("[file:lastnames.txt]:4-6").Nullable(0.25)
    .Property(s => s.Email).Construct(s => $"{Utility.BuildNameWithoutSpaces(s.FirstName, s.LastName)}" + 
                                           $"{TemplateProcessor.CreateValue(Random.Shared,"@[resource:Domains]")}")
    .Property(s => s.BirthDay).Range(DateTime.Today.AddYears(-60), DateTime.Today.AddYears(-16)).Nullable(0.1)
    .Property(s => s.Year).Range(1,5).GenerationRule("NegativeYear", 0.5, _ => Random.Shared.Next(-5, -1))
    .Property(s => s.Courses).Count(2,4)
    .Property(s => s.Degree).FromCollection(["Bachelor", "Master", "Doctor"])
    .Property(s => s.Note).Template("Note: [number:100-999] [resource:Firstnames] [file:lastnames.txt] [oneof:Europe,America,Africa].");

//Contact
scheme.ForType<Contact>()
    .Property(s => s.Phone).UseGenerator(new PhoneGenerator()).PhoneMask("## ## ## ##")
    .Property(s => s.Address).Template("[resource:Addresses]")
    .Property(s => s.IpAddress).UseGenerator(new IpGenerator()).Nullable(0.5);

var dataGenerator = new SimpleDataGenerator(scheme);
var randomStudentCollection = dataGenerator.GenerateForType<StudentGroup>();

${\color{black}{Default \space values}}$

The range default values can be overriden if necessary.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.4 201 3/11/2025
2.1.3 182 3/10/2025
2.1.2 165 3/10/2025
2.1.1 225 3/5/2025
2.1.0 197 3/5/2025
2.0.0 219 3/5/2025
2.0.0-alpha.1 162 3/5/2025
1.11.0 98 2/27/2025
1.10.0 512 11/14/2023
1.9.1 737 1/11/2023
1.9.0 710 1/8/2023
1.8.2 694 12/18/2022
1.8.1 688 12/14/2022
1.8.0 709 12/7/2022
1.7.1 697 12/5/2022
1.7.0 722 12/5/2022
1.6.4 730 11/30/2022
1.6.2 733 11/23/2022
1.6.1 768 11/23/2022
1.6.0 719 11/21/2022
1.5.2 733 11/20/2022
1.5.1 709 11/19/2022
1.5.0 741 11/18/2022
1.4.1 751 11/16/2022
1.4.0 815 7/31/2022
1.3.1 938 9/24/2020
1.3.0 881 9/7/2020
1.2.0 1,051 8/31/2020 1.2.0 is deprecated because it is no longer maintained.