如何将 ObjectDataSource 与复杂对象和 FormView 控件一起使用
我有一个复杂的对象。例如,一个 SCHOOL 对象包含 PERSON 对象的集合。如何将 ObjectDataSource 控件与 FormView 一起使用并展平复杂对象?示例显示是在页面上显示学校名称和逗号分隔学生。这可能吗?
IE
公共字符串 ID
{
获取{返回m_id; }
设置 { m_id = 值; }
}
公共字符串学校名称
{
获取 { 返回 m_schoolName; }
设置 { m_schoolName = 值; }
}
public List(人>学生
{
获取{返回m_students; }
设置{ m_cast = 学生; }
}
I have a complex object. For example a SCHOOL object that contains a collection of PERSON object. How can I use the ObjectDataSource control with a FormView and flatten the complex object? An example display would be to display the school name and comma separate the students on the page. Is this possible?
I.E.
public string Id
{
get { return m_id; }
set { m_id = value; }
}
public string SchoolName
{
get { return m_schoolName; }
set { m_schoolName = value; }
}
public List(Person> Students
{
get { return m_students; }
set { m_cast = students; }
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里找到解决方案:
显示 IGrouping<>带有嵌套的ListViews。
我在 FormView 控件中嵌套了一个 DataList 控件以使其正常工作。
Found the solution here:
Displaying an IGrouping<> with nested ListViews.
I nested a DataList control inside my FormView control to get it working.