2 回答
TA贡献1818条经验 获得超8个赞
由于您正在尝试在布局(不包含模型)中执行数据库操作,因此依赖注入可以帮助您。
您可以定义一个具有 DB 访问方法的类,将其注册到您的服务,并从任何 View/Controller/pageModel 轻松使用它的方法
我将用代码解释:
这是我们的依赖:
public class MyDependency
{
// You can use dependency injection in a chained fashion,
// DBContext is injected in our dependency
private readonly DBContext _dbContext;
public MyDependency(DBContext dbContext)
{
_dbContext = dbContext;
}
// Define a method that access DB using dbContext
public bool CheckInDb()
{
return dbContext.SomeCheck();
}
}
将其注册到您的服务中Startup(您的依赖项应在注册 DBContext 后注册)
public void ConfigureServices(IServiceCollection services)
{
// Some code here
services.AddDbContext<DBContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddScoped<MyDependency>();
}
然后在你的布局中:
@inject MyDependency MyDependency
@if(MyDependency.CheckInDb())
{
// Do something
}
else
{
// Do something else
}
- 2 回答
- 0 关注
- 119 浏览
添加回答
举报