Delete duplicated rows with linq

Hello all :slight_smile:

I would need to delete duplicated rows from a data table with the condition that the entire row is the same as another (same value for each column).

Do you know how can I do it using linq?

Thanks :slight_smile:

Hey!

Try like this

Dt.DefaultView.ToTable(True)

Regards,
NaNi

Thanks! :slight_smile:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.