DataMaker 1.3.2
See the version list below for details.
dotnet add package DataMaker --version 1.3.2
NuGet\Install-Package DataMaker -Version 1.3.2
<PackageReference Include="DataMaker" Version="1.3.2" />
<PackageVersion Include="DataMaker" Version="1.3.2" />
<PackageReference Include="DataMaker" />
paket add DataMaker --version 1.3.2
#r "nuget: DataMaker, 1.3.2"
#:package DataMaker@1.3.2
#addin nuget:?package=DataMaker&version=1.3.2
#tool nuget:?package=DataMaker&version=1.3.2
DataMaker
<img src="./icon.png" alt="DataMaker Logo" width="100" />
A .NET library for quickly generating test data entities from existing data sources.
Overview
DataMaker simplifies test data generation by mapping your existing database tables (or other data sources) to strongly-typed C# entities. Instead of writing complex test data setup code, define your mappings once and generate as many test instances as you need.
Key Features
- Strongly-typed mappings using lambda expressions
- Foreign key lookups - automatically resolve relationships between tables
- Multiple selection strategies - sequential or random data selection
- Provider pattern - easily extend to support different data sources (SQL Server, CSV, etc.)
- Fluent API - clean, readable configuration
- Type-safe - compile-time validation of your mappings
Installation
NuGet Package
dotnet add package DataMaker
Or via Package Manager Console:
Install-Package DataMaker
Build from Source
git clone https://github.com/ctacke/DataMaker.git
cd DataMaker
dotnet build
Quick Start
Basic Usage
using DataMaker;
// 1. Create a Generator instance
var generator = new Generator();
// 2. Add a data provider (SQL Server, CSV, etc.)
generator.AddProvider(new SqlServerDataProvider("YourConnectionString"));
// 3. Configure mappings for your entity
generator.AddDataMap<User>("Users") // Primary table name
.WithColumn(u => u.Name, "Name")
.WithColumn(u => u.Email, "Email");
// 4. Generate test data
var users = generator.Generate<User>(10); // Generate 10 users
foreach (var user in users)
{
Console.WriteLine($"{user.Name} - {user.Email}");
}
Entity Definition
public class User
{
public string? Name { get; set; }
public string? Email { get; set; }
public string? City { get; set; }
}
Core Concepts
1. Data Providers
Data providers implement IDataProvider and retrieve data from a source. DataMaker currently includes:
- SqlServerDataProvider - Retrieves data from SQL Server databases
- SqliteDataProvider - Retrieves data from SQLite databases
// SQL Server
var sqlProvider = new SqlServerDataProvider(
"Server=.;Database=TestDb;Integrated Security=True;"
);
generator.AddProvider(sqlProvider);
// SQLite - accepts file path or connection string
var sqliteProvider = new SqliteDataProvider("path/to/database.sqlite");
generator.AddProvider(sqliteProvider);
2. Primary Tables
Each entity maps to a primary table. When generating data, DataMaker selects rows from this table based on your chosen strategy.
generator.AddDataMap<Product>("Products") // "Products" is the primary table
3. Selection Strategies
Control how rows are selected from the primary table:
// Sequential - rows 0, 1, 2, 3... (wraps around if count > rows)
var sequential = generator.Generate<User>(10, SelectionStrategy.Sequential);
// Random - randomly selected rows
var random = generator.Generate<User>(10, SelectionStrategy.Random);
Mapping Methods
WithColumn - Simple Column Mapping
Maps a property directly to a column in the primary table.
// Explicit column name (when property name differs from column name)
generator.AddDataMap<User>("Users")
.WithColumn(u => u.Name, "FullName")
.WithColumn(u => u.Email, "EmailAddress");
// Auto-mapping (when property name matches column name)
generator.AddDataMap<Product>("Products")
.WithColumn(p => p.Name) // Maps to "Name" column
.WithColumn(p => p.Price) // Maps to "Price" column
.WithColumn(p => p.Cost, "StandardCost"); // Explicit when different
WithSequence - Sequential Value Generation
Generates sequential numeric values, perfect for IDs or counters.
// Generate sequential IDs starting at 1: 1, 2, 3, 4...
generator.AddDataMap<User>("Users")
.WithSequence(u => u.Id)
.WithColumn(u => u.Name);
// Generate IDs starting at a specific value
generator.AddDataMap<Order>("Orders")
.WithSequence(o => o.OrderId, startValue: 1000) // 1000, 1001, 1002...
.WithColumn(o => o.Description);
WithValue - Generated Values
Generates values using custom functions. Perfect for GUIDs, timestamps, or computed values.
// Generate GUIDs
generator.AddDataMap<Product>("Products")
.WithValue(p => p.Id, () => Guid.NewGuid())
.WithColumn(p => p.Name);
// Generate timestamps
generator.AddDataMap<Event>("Events")
.WithValue(e => e.CreatedAt, () => DateTime.UtcNow)
.WithColumn(e => e.Description);
// Generate values with index access
generator.AddDataMap<User>("Users")
.WithValue(u => u.Username, index => $"user{index + 1}") // user1, user2, user3...
.WithValue(u => u.Email, index => $"user{index + 1}@example.com") // user1@example.com...
.WithValue(u => u.Code, index => $"USR-{index + 1:D5}") // USR-00001, USR-00002...
.WithColumn(u => u.FirstName);
WithLookup - Foreign Key Relationships
Automatically resolves foreign key relationships to related tables.
generator.AddDataMap<User>("Users")
.WithColumn(u => u.Name, "Name")
.WithLookup(
u => u.City, // Target property
"Addresses", // Related table
"AddressId", // Foreign key in primary table (Users)
"Id", // Primary key in related table (Addresses)
"City" // Column to retrieve from related table
);
How it works:
- Selects a row from the
Userstable - Reads the
AddressIdvalue from that row - Finds the matching row in
AddresseswhereId = AddressId - Returns the
Cityvalue from the matched address row
WithTableMap - Custom Mappings
For complex scenarios, use custom mapping functions with access to the row and provider.
generator.AddDataMap<User>("Users")
.WithColumn(u => u.FirstName, "FirstName")
.WithColumn(u => u.LastName, "LastName")
.WithTableMap(
u => u.FullName,
(row, provider) => $"{row["FirstName"]} {row["LastName"]}"
);
With Index Access - For custom sequential or computed values:
generator.AddDataMap<Order>("Orders")
.WithTableMap(o => o.OrderNumber, (row, provider, index) => $"ORD-{index + 1000:D5}") // ORD-01000, ORD-01001...
.WithTableMap(o => o.CustomId, (row, provider, index) => index + 1) // Sequential: 1, 2, 3...
.WithColumn(o => o.Description, "Description");
Advanced Examples
Sequential ID Generation
Generate entities with auto-incrementing IDs without pulling them from the database:
public class Customer
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Email { get; set; }
}
generator.AddDataMap<Customer>("Customers")
.WithSequence(c => c.Id) // Auto-generate: 1, 2, 3, 4...
.WithColumn(c => c.Name, "Name")
.WithColumn(c => c.Email, "Email");
var customers = generator.Generate<Customer>(100);
// Creates customers with IDs from 1 to 100
Complex Entity with Multiple Lookups
public class Order
{
public string? OrderNumber { get; set; }
public string? CustomerName { get; set; }
public string? ProductName { get; set; }
public decimal? Price { get; set; }
}
generator.AddDataMap<Order>("Orders")
.WithColumn(o => o.OrderNumber, "OrderNum")
.WithLookup(o => o.CustomerName, "Customers", "CustomerId", "Id", "Name")
.WithLookup(o => o.ProductName, "Products", "ProductId", "Id", "Name")
.WithLookup(o => o.Price, "Products", "ProductId", "Id", "Price");
Combining Multiple Tables
generator.AddDataMap<Employee>("Employees")
.WithColumn(e => e.EmployeeId, "Id")
.WithColumn(e => e.FirstName, "FirstName")
.WithColumn(e => e.LastName, "LastName")
.WithLookup(e => e.DepartmentName, "Departments", "DeptId", "Id", "Name")
.WithLookup(e => e.ManagerName, "Employees", "ManagerId", "Id", "FirstName")
.WithLookup(e => e.City, "Addresses", "AddressId", "Id", "City")
.WithLookup(e => e.State, "Addresses", "AddressId", "Id", "State");
var employees = generator.Generate<Employee>(50, SelectionStrategy.Random);
Custom Data Transformation
generator.AddDataMap<Product>("Products")
.WithColumn(p => p.Name, "ProductName")
.WithTableMap(
p => p.DisplayName,
(row, provider) =>
{
var name = row["ProductName"].ToString();
var category = row["Category"].ToString();
return $"{category} - {name}";
}
);
Custom Sequential Formats
Generate formatted IDs, order numbers, or codes using the index:
public class Invoice
{
public int Id { get; set; }
public string? InvoiceNumber { get; set; }
public string? ReferenceCode { get; set; }
public decimal? Amount { get; set; }
}
generator.AddDataMap<Invoice>("Invoices")
.WithSequence(i => i.Id) // Simple numeric: 1, 2, 3...
.WithTableMap(
i => i.InvoiceNumber,
(row, provider, index) => $"INV-2024-{index + 1:D6}") // INV-2024-000001, INV-2024-000002...
.WithTableMap(
i => i.ReferenceCode,
(row, provider, index) =>
{
var year = DateTime.Now.Year;
var month = DateTime.Now.Month;
return $"{year}{month:D2}-{index + 1000}"; // 202401-1000, 202401-1001...
})
.WithColumn(i => i.Amount, "Amount");
var invoices = generator.Generate<Invoice>(50);
SQLite with Auto-Mapping and Generated Values
Combine SQLite provider with auto-mapping and value generation:
public class Order
{
public Guid Id { get; set; }
public int OrderNumber { get; set; }
public string? CustomerName { get; set; }
public string? ProductName { get; set; }
public decimal? Price { get; set; }
public DateTime CreatedAt { get; set; }
}
var generator = new Generator();
generator.AddProvider(new SqliteDataProvider("Northwind.sqlite"));
generator.AddDataMap<Order>("Orders")
.WithValue(o => o.Id, () => Guid.NewGuid()) // Generate GUID
.WithValue(o => o.OrderNumber, index => 1000 + index) // Sequential: 1000, 1001...
.WithValue(o => o.CreatedAt, () => DateTime.UtcNow) // Timestamp
.WithColumn(o => o.CustomerName) // Auto-map to "CustomerName"
.WithColumn(o => o.ProductName) // Auto-map to "ProductName"
.WithColumn(o => o.Price); // Auto-map to "Price"
var orders = generator.Generate<Order>(50);
Custom Sequential Formats
Generate formatted IDs, order numbers, or codes using the index:
public class Invoice
{
public int Id { get; set; }
public string? InvoiceNumber { get; set; }
public string? ReferenceCode { get; set; }
public decimal? Amount { get; set; }
}
generator.AddDataMap<Invoice>("Invoices")
.WithSequence(i => i.Id) // Simple numeric: 1, 2, 3...
.WithTableMap(
i => i.InvoiceNumber,
(row, provider, index) => $"INV-2024-{index + 1:D6}") // INV-2024-000001, INV-2024-000002...
.WithTableMap(
i => i.ReferenceCode,
(row, provider, index) =>
{
var year = DateTime.Now.Year;
var month = DateTime.Now.Month;
return $"{year}{month:D2}-{index + 1000}"; // 202401-1000, 202401-1001...
})
.WithColumn(i => i.Amount, "Amount");
var invoices = generator.Generate<Invoice>(50);
API Reference
Generator Class
| Method | Description |
|---|---|
AddProvider(IDataProvider) |
Adds a data provider for retrieving data |
AddDataMap<T>(string tableName) |
Creates a mapping configuration for type T with specified primary table |
Generate<T>(int count, SelectionStrategy) |
Generates specified number of entities using the configured mappings |
DataMap<T> Class
| Method | Description |
|---|---|
WithColumn(property) |
Maps property to column with same name in primary table |
WithColumn(property, columnName) |
Maps property to specified column in primary table |
WithSequence(property, startValue) |
Generates sequential numeric values (default starts at 1) |
WithValue(property, func) |
Generates values using a function (GUIDs, timestamps, etc.) |
WithValue(property, indexFunc) |
Generates values using a function with index access |
WithLookup(property, table, fk, pk, column) |
Maps property using foreign key lookup |
WithTableMap(property, func) |
Maps property using custom function (with optional index parameter) |
SelectionStrategy Enum
| Value | Description |
|---|---|
Sequential |
Selects rows in order (0, 1, 2...), wraps around if needed |
Random |
Randomly selects rows from available data |
Data Providers
SQL Server Provider
var provider = new SqlServerDataProvider(connectionString);
generator.AddProvider(provider);
Features:
- Lazy loading and caching of table data
- SQL injection protection via table name validation
- Support for standard SQL Server table naming conventions
Security: Table names are validated using a whitelist pattern (alphanumeric, underscore, period, brackets only).
SQLite Provider
// Option 1: File path
var provider = new SqliteDataProvider("path/to/database.sqlite");
generator.AddProvider(provider);
// Option 2: Connection string
var provider = new SqliteDataProvider("Data Source=path/to/database.sqlite");
generator.AddProvider(provider);
Features:
- Supports file paths or full connection strings
- Automatic file validation
- Lazy loading and caching of table data
- SQL injection protection via table name validation
- Perfect for lightweight databases and testing scenarios
Use Cases:
- Unit testing with embedded test databases
- Prototyping with sample data
- Generating test data from Northwind or other sample SQLite databases
Creating Custom Providers
Implement IDataProvider to support other data sources:
public class CsvDataProvider : IDataProvider
{
public IDataEntity this[string entityName]
{
get
{
// Load CSV file and return as IDataEntity
}
}
}
Best Practices
- Reuse Generator instances - Configure once, generate many times
- Use WithColumn for simple mappings - More performant than custom functions
- Cache related table data - Providers cache table data automatically
- Validate your mappings - Run tests to ensure foreign keys resolve correctly
- Choose appropriate selection strategy - Use Sequential for deterministic tests, Random for broader coverage
Performance Considerations
- Table caching: Each table is loaded once and cached by the provider
- Foreign key lookups: Performed via LINQ queries on cached data
- Large datasets: Consider using views or filtered queries in your provider
Troubleshooting
"No data provider has been added"
Call AddProvider() before calling Generate().
"Primary table 'X' has no rows"
Ensure your database table contains data.
Foreign key lookup returns null
- Verify the foreign key column name matches your database
- Ensure related table has matching records
- Check that key values match (types and values)
Type conversion errors
DataMaker attempts automatic type conversion. For complex types, use WithTableMap with custom conversion logic.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
For issues, questions, or suggestions:
- Open an issue on GitHub
- Check existing issues for solutions
- Review the examples in the test project
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 was computed. 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Microsoft.Data.Sqlite (>= 10.0.1)
- System.Data.SqlClient (>= 4.8.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.