レポートに入る前に、LINQ を使用してデータを選択します。私のコードは VB.net にありますが、かなり簡単に翻訳できます。
1 - データ オブジェクトを作成します - データが含まれます
Public Class Animal
Public name As String
Public livesYears As Integer
Public location As String
End Class
2 - XtraReport1 を作成します。BindingSource
aをデザイナーにドロップし、それを に設定DataSource
しAnimal
ます。Animal
ウィザードが生成するリストに表示されない場合は、ソリューションを再構築する必要があります。いくつかのフィールドをデザイナーにドロップします...「名前」など、レポートに何か...レポートするものがあります!
3 - サブを作成してリストに入力します
Private Function createAnimals() As List(Of Animal)
Dim allAnimals As New List(Of Animal)
allAnimals.Add(New Animal With {.name = "Snake", .livesYears = "12", .location = "Africa"})
allAnimals.Add(New Animal With {.name = "Dog", .livesYears = "17", .location = "England"})
allAnimals.Add(New Animal With {.name = "Cat", .livesYears = "14", .location = "Egypt"})
allAnimals.Add(New Animal With {.name = "Hedgehog", .livesYears = "4", .location = "England"})
allAnimals.Add(New Animal With {.name = "Dragon", .livesYears = "350", .location = "Canada"})
allAnimals.Add(New Animal With {.name = "Bat", .livesYears = "28", .location = "Scotland"})
Return allAnimals
End Function
4 - Form Load でレポートのインスタンスを作成する
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
'create our list of animals (could be a for loop that adds each dataset row to the list of Animal)
Dim allAnimals As List(Of Animal) = createAnimals()
'select just the Animals that we want
Dim justTheAnimalsIWant = (From ani In allAnimals
Where ani.location = "England"
Select ani).ToList
'create instance of the report
Dim report As New XtraReport1
'set the datasource to justTheAnimalsIWant
report.DataSource = justTheAnimalsIWant
Dim printTool As ReportPrintTool = New ReportPrintTool(report)
printTool.ShowPreview()
End Sub
上記の例はデータセットを使用せず、Animal
オブジェクトのリストを使用します。オブジェクトのリストを作成Animal
するには、for ループを使用してデータ行を反復処理し、Animal
オブジェクトのリストに追加します。次に、LINQ を使用して必要なものを選択した後、justTheAnimalsIWant
. シンプル。