处理模型中的数据

时间:2014-05-24 05:46:13

标签: c# asp.net-mvc database

我正在尝试从数据库中提取一个数字并在视图中使用它。在数据库中,数字通常是2500或1000,或类似的东西。我想将此数字除以1000得到0.25或0.1,这是'百分比'的更精确表示。

在mvc模型中,如何将值设置为自身除以1000?

我尝试过类似的东西,但似乎没有用。

    /// <summary>
    /// Gets or sets percentage.
    /// </summary>
    public decimal Percentage
    {
        get
        {
            return (this.Percentage / 100);
        }
    }

我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:0)

正如Uriil所说,你需要有额外的财产来使用百分比值来产生被操纵的价值。

/// <summary>
/// Gets actual percentage.
/// </summary>
public decimal DisplayPercentage
{
    get
    {
        return (this.Percentage / 100);
    }
}