0

我在获取和设置值时遇到问题,因为我在代码中引入了第三个方面。

以前我会这样做以获取/设置记录:

public virtual string MyString { get; set;}

然后在我的部分:

public string MyString
{
    get { return Record.MyString; }
    set { Record.MyString = value; }
}

NHibernate 会将我的值保存在数据库中(显然,为简洁起见,我的其他代码未在此处提供)。

现在我正在尝试用一个列表做一个复选框。我有一个复选框:

public class MyPart : ContentPart<MyPartRecord>
{
    public MyPart()
    {
        MyList = Enum.GetValues(typeof(MyEnum))
            .Cast<MyEnum>().Select(x =>
        {
            return new SelectListItem { Text = x.ToString().ToUpper(), 
                Value = ((int)x).ToString() };
         }).ToList();
    }

    public IList<SelectListItem> MyList { get; set; }
    private string myCheckBox;

    // Record class contains the following commented code: 
    // public virtual string MyCheckBox { get; set;}

    // Trying to do this now here in MyPart class:
    public string MyCheckBox
    {
        get
        {
            if (!string.IsNullOrEmpty(myCheckBox))
                return myCheckBox;
            // Tried the following commented code to get value:
            // Record.MyCheckBox = myCheckBox;
            return string.Join(",", MyList.Where(x => x.Selected)
                .Select(x => x.Value).ToArray());
        }
        set
        {
            myCheckBox = value;
            // Tried the following commented code to set value:
            // Record.MyCheckBox = myCheckBox;
        }
    }
}

我只是不知道在这种情况下如何分配值(获取/设置myCheckBoxMyCheckBox. 它被保存在数据库中为空。

提前感谢您的帮助。

4

2 回答 2

0

在我看来,您会隐藏virtual.MyCheckBox

我认为您宁愿override选择基础:

public override String MyCheckBox
{
    get
    {
        if (!string.IsNullOrEmpty(myCheckBox))
            return myCheckBox;
        // Tried the following commented code to get value:
        // Record.MyCheckBox = myCheckBox;
        return string.Join(",", MyList.Where(x => x.Selected)
            .Select(x => x.Value).ToArray());
    }
    set
    {
        myCheckBox = value;
        // Tried the following commented code to set value:
        // Record.MyCheckBox = myCheckBox;
    }
}

从而成为变量而不是混淆它?

于 2013-08-29T18:01:39.797 回答
0

我最终只是摆脱了部分并坚持只记录 - 这使我能够在视图模型中执行getand set,效果更好(并且不那么混乱)。

于 2013-09-05T15:06:54.117 回答