ASP.NET Core Razor 将相关数据读入table
ASP.NET Core Razor Read related data into table
我正在尝试创建一个 asp.net 核心 2.1 razor 网站,它将在一页上加载两个 table。下面我定义了我的 类 ItemMasters 和 DealMasters。 ItemMasters 存储服装商品,DealMasters 存储商品交易。 DealMasters 使用 DealItemId
存储相关的 ItemID
我正在尝试让 getItem 页面显示交易 table 但只有 DealItemId 与页面上的项目 ID 匹配的全部内容
im trying to have the getItem Page to show the deals table but only the entires where the DealItemId matches the ID of the item on the page
因为你使用了FirstOrDefaultAsync(m => m.DealItemID == this.id)
,尝试使用:
DealsMasters = await _context.DealsMasters.ToListAsync();
我正在尝试创建一个 asp.net 核心 2.1 razor 网站,它将在一页上加载两个 table。下面我定义了我的 类 ItemMasters 和 DealMasters。 ItemMasters 存储服装商品,DealMasters 存储商品交易。 DealMasters 使用 DealItemId
存储相关的 ItemID我正在尝试让 getItem 页面显示交易 table 但只有 DealItemId 与页面上的项目 ID 匹配的全部内容
im trying to have the getItem Page to show the deals table but only the entires where the DealItemId matches the ID of the item on the page
因为你使用了FirstOrDefaultAsync(m => m.DealItemID == this.id)
,尝试使用:
DealsMasters = await _context.DealsMasters.ToListAsync();