gpt4 book ai didi

c# - 将 Controller 中具有计算值的网格传递给 View 时,模型返回 null

转载 作者:太空宇宙 更新时间:2023-11-03 15:12:24 25 4
gpt4 key购买 nike

这里我有两个归档是分配,另一个归档是金额。我想在第三个字段中显示 ((Allocation/100)*Amount) n 中的第三个字段。

我有这方面的代码,但它没有用。在查看我的模型返回 Null 值。下面我显示我的 Controller 的代码。

public ActionResult recommendedportfolio()
{
using (var db = new WFTradeEntities1())
{
return View(db.Schema_Details.ToList());
}
}
[HttpPost]
public ActionResult recommendedportfolio(int sName)
{
using (var db = new WFTradeEntities1())
{
var tr = db.Schema_Details.ToList().Where(C => C.RID == sName).Sum((x => x.Allocation / 100));
var total = db.Schema_Details.Sum((x => x.Lum_Sum_Amount * tr )&& (x =>x.SIPAmount * tr ));
return PartialView("_PortfolioTable", total);
}
}

所以请帮帮我,我想要两个在第三个原始数据中显示数量,在第四个原始数据中显示与计数相同的数量..在下图中,我可以显示带有输出的查询。我必须修复 lum_Sum_Amount 25000。
在分配中,一些百分比被赋予 50% 20% 30% = 总计 100%。我在 View lum_Sum_Amount 中所做的计算与分配百分比值 n 获得总计显示的值。

enter image description here

最佳答案

首先你需要创建一个模型

public class LINQDATA2
{
public Int64 SID { get; set; }
public Int64 RID { get; set; }
public string Schema_Name { get; set; }
public string SType { get; set; }
public string InvestmentType { get; set; }
public int Allocation { get; set; }
public int Lum_Sum_Amount { get; set; }
public float Total { get; set; }
}

因为动态列在 LINQ 中是不可能的。

现在执行类似的查询

var x = data.Select(i => new LINQDATA2 { SID = i.SID, Total = (i.Allocation / 100) * i.Lum_Sum_Amount }).ToList();

并将这个模型传递给局部 View

关于c# - 将 Controller 中具有计算值的网格传递给 View 时,模型返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40541622/

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