mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
730 B
29 lines
730 B
using AbpPerfTest.WithAbp.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
|
|
namespace AbpPerfTest.WithAbp.EntityFramework
|
|
{
|
|
public class BookDbContext : AbpDbContext<BookDbContext>
|
|
{
|
|
public DbSet<Book> Books { get; set; }
|
|
|
|
public BookDbContext(DbContextOptions<BookDbContext> builderOptions)
|
|
: base(builderOptions)
|
|
{
|
|
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
modelBuilder.Entity<Book>(b =>
|
|
{
|
|
b.ToTable("Books");
|
|
b.Property(x => x.Name).HasMaxLength(128);
|
|
});
|
|
}
|
|
}
|
|
}
|