wosledon / Snakeskin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Snakeskin

简体中文 | English

该库的作用是为了在开发过程中,快速生成测试数据。

VS Code .NET Core

Build and Publish NuGet Packages ReSharper

Package Version Downloads
Snakeskin NuGet version (Snakeskin) NuGet downloads (Snakeskin)
Snakeskin.EntityFrameworkCore NuGet version (Snakeskin.EntityFrameworkCore) NuGet downloads (Snakeskin.EntityFrameworkCore)

使用方法

public class SnakeskinDbContext(DbContextOptions<SnakeskinDbContext> options) : DbContext(options)
{
    public DbSet<User> Users { get; set; }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        modelBuilder.Fake<User>()
            .WithCount(10_000);

        modelBuilder.CommitFake();

        base.OnModelCreating(modelBuilder);
    }
}

Thanks

JetBrains Logo (Main) logo.

About

License:MIT License


Languages

Language:C# 100.0%