第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Asp .Net Core 在數(shù)據(jù)庫(kù)檢查布局上隱藏菜單

Asp .Net Core 在數(shù)據(jù)庫(kù)檢查布局上隱藏菜單

C#
達(dá)令說 2023-04-29 16:51:04
我需要根據(jù)數(shù)據(jù)庫(kù)檢查在側(cè)邊欄菜單中隱藏和顯示一些鏈接,但由于布局沒有頁面模型,我該如何實(shí)現(xiàn)呢?如果完成索賠很容易,但我需要訪問數(shù)據(jù)庫(kù)@if (User.Identity.IsAuthenticated){    <li class="nav-item has-treeview">        <a asp-page="/Account/Documentos/Index" class="nav-link custom-sidebar-link">            <i class="nav-icon fas fa-file-alt"></i>            <p class="text-white">                Documentos            </p>        </a>    </li>    // need to hide this on database check    <li class="nav-item has-treeview">        <a asp-page="/Account/Consumos/Index" class="nav-link custom-sidebar-link">            <i class="nav-icon fas fa-cogs"></i>            <p class="text-white">                Arranque Produ??o            </p>        </a>    </li>}  
查看完整描述

2 回答

?
弒天下

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超8個(gè)贊

由于您正在嘗試在布局(不包含模型)中執(zhí)行數(shù)據(jù)庫(kù)操作,因此依賴注入可以幫助您。

您可以定義一個(gè)具有 DB 訪問方法的類,將其注冊(cè)到您的服務(wù),并從任何 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();

? ? }

}

將其注冊(cè)到您的服務(wù)中Startup(您的依賴項(xiàng)應(yīng)在注冊(cè) DBContext 后注冊(cè))


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

}


查看完整回答
反對(duì) 回復(fù) 2023-04-29
?
犯罪嫌疑人X

TA貢獻(xiàn)2080條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以使用視圖模型或 HttpContext



查看完整回答
反對(duì) 回復(fù) 2023-04-29
  • 2 回答
  • 0 關(guān)注
  • 160 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)