如何将 ObjectDataSource 与复杂对象和 FormView 控件一起使用

发布于 2024-10-09 08:55:58 字数 375 浏览 2 评论 0原文

我有一个复杂的对象。例如,一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫雪独思 2024-10-16 08:55:58

在这里找到解决方案:

显示 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文