gpt4 book ai didi

c# - 如何使用 EF Core 添加新表

转载 作者:搜寻专家 更新时间:2023-10-30 19:45:01 25 4
gpt4 key购买 nike

我已经有一个现有的数据库,它是在我将 Identity 添加到项目时创建的。现在我想向数据库中添加更多表,但不知道如何操作。

我已经为它创建了一个模型:

public class Match
{
public Guid ID { get; set; }
public string HomeTeam { get; set; }
public string AwayTeam { get; set; }
public int FullTimeScore { get; set; }
public DateTime MatchStart { get; set; }
public int PrizePool { get; set; }
}

我的背景:

public class DynamicBettingUserContext : IdentityDbContext<IdentityUser>
{
public DynamicBettingUserContext(DbContextOptions<DynamicBettingUserContext> options)
: base(options)
{
}

protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
// Customize the ASP.NET Identity model and override the defaults if needed.
// For example, you can rename the ASP.NET Identity table names and more.
// Add your customizations after calling base.OnModelCreating(builder);
}
}

下一步是什么?

最佳答案

您需要添加 Match你的 table DynamicBettingUserContext类如下。然后您需要使用 Add-Migration <YourMigrationName> 添加迁移在包管理器控制台中,最后,您必须运行 Update-Database PMC 中的命令。

public virtual DbSet<Match> Match { get; set; } 

关于c# - 如何使用 EF Core 添加新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52074945/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com