I am building LINQ to SQL and its run against SQlite database. I need to remove repeating column values from the dataset. Basically the value would be shown for the first row in the dataset and blanked for each subsequent row that had the same value.
I read about using break but I am not sure how to write it up or if it can be used. I read other threads addressing the same issue but was not able to come up with a solution for my scenario.
Should I just retrieve the dataset and suppress them in C# code?
If so I need help/pointers to do that.
If you are displaying this data in an SSRS report (.RDLC), set the
HideDuplicatesproperty of the text box that shows the data to either the name of the dataset or the grouping it’s in (to show the value at the start of a new group).