gpt4 book ai didi

c# - 我们如何使用 LINQ 从 asp.net mvc3 中的长字符串中提取短字符串?

转载 作者:行者123 更新时间:2023-11-30 20:05:38 25 4
gpt4 key购买 nike

我目前正在从事一个小型电子商务项目。我想显示产品的简短描述,而不是显示所有描述(来自数据库)。
这是我的 Controller ;

var products = context.Products.OrderBy(p => p.ProductName);
@ViewBag.ProductList = products.ToList<Product>();

这是我的 View 代码;

<ul class="display" id="content">
@foreach( var item in @ViewBag.ProductList as IEnumerable<Product>)
{
@Html.Partial("_ProductPartial", item)
}
</ul>

现在在我的部分 "_ProductPartial" View 中,我有一个名为的描述字段;

<p>
@Html.DisplayFor(model => model.ProductDescription)
</p>

现在,我想显示产品的简短描述(而不是显示默认情况下的完整描述)。
那么,我如何使用 LINQ 执行此操作?
有没有其他方法(如果可能的话)?

最佳答案

我正在使用 ViewModel 执行此操作:

    public string ProductDescription { get; set; }

public string ShortDescription
{
get
{
var text = ProductDescription;
if (text.Length > 21)
{
text = text.Remove(19);
text += "..";
}
return text ;
}
}

对于你来说,如果你不想创建一个 ViewModel,你可以扩展你的 Product 类来拥有这个只读属性

关于c# - 我们如何使用 LINQ 从 asp.net mvc3 中的长字符串中提取短字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11062065/

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