说我有以下课程:
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属性以将其设置为其数据源。
答案 0 :(得分:0)
您是否必须先在构造函数中创建列表实例,然后才能在其中放入任何内容?
_contestants = New List(Of String)