我在获取和设置值时遇到问题,因为我在代码中引入了第三个方面。
以前我会这样做以获取/设置记录:
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;
}
}
}
我只是不知道在这种情况下如何分配值(获取/设置myCheckBox
到MyCheckBox
. 它被保存在数据库中为空。
提前感谢您的帮助。