Asp.net核心为标识创建接口



我正在创建一个asp.net核心web应用程序,并试图为我的数据库上下文创建一个接口,以便在我的业务逻辑层中使用它。界面制作如下:

public interface IAppDbContext
{
public DbSet<Country> Countries { get; set; }
public DbSet<City> Cities { get; set; }
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
}

接口的实现如下:

public class AppDbContext : IdentityDbContext<ApplicationUser, ApplicationRole, string> , IAppDbContext
{
public AppDbContext(DbContextOptions<AppDbContext> options)
: base(options)
{
}
public DbSet<Country> Countries { get; set; }
public DbSet<City> Cities { get; set; }
}

问题是,当我注入接口并尝试使用_context.Users时,它显示的错误是:

'IAppDbContext' does not contain a definition for 'Users' and no accessible extension method 'Users' accepting a first argument of type 'IAppDbContext' could be found (are you missing a using directive or an assembly reference?).

我知道在实现中,_context.Users来自父类IdentityDbContext,但我如何将它也添加到接口中以便使用它?非常感谢。

您可以将用户添加到界面中。尝试以下方式更新:

public interface IAppDbContext
{
public DbSet<Country> Countries { get; set; }
public DbSet<City> Cities { get; set; }
DbSet<ApplicationUser> Users { get; set; }
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
}

相关内容

  • 没有找到相关文章

最新更新