0

假设我有以下课程:

    Public Class Result

    Private _name As String
    Public Property Name As String
        Get
            Return _name
        End Get
        Set(value As String)
            _name = value
        End Set
    End Property

    Private _contestants As List(Of String)
    Public Property Contestants As List(Of String)
        Get
            Return _contestants
        End Get
        Set(value As List(Of String))
            _contestants = value
        End Set
    End Property

End Class

我已经设法使用数据库向导将数据绑定设置为报表中的 Result 类。但是,我只能从 Field Explorer 中拖动报表上的 Name 属性。

我如何也可以合并 Contestants 财产?我尝试制作子报表,但无法导航到 Contestants 属性以将其设置为其数据源。

4

1 回答 1

0

您不必在构造函数中创建列表的实例,然后才能将任何内容放入其中吗?

_contestants = New List(Of String)
于 2013-11-15T14:28:13.097 回答