Eliminar registros repetidos en un datatable


/ Published in: VB.NET
Save to your folder(s)

Para quitar filas repetidas de un datatable se tiene que crear un DataView y después utilizar el método ToTable pasando como primer parámetro true. Este parámetro indica que devuelva resultados únicos teniendo en cuenta el nombre de las columnas.


Copy this code and paste it in your HTML
  1. Dim MyView As DataView = New DataView(dtDuplicados)
  2. Dim dtSinDuplicados As DataTable
  3. dtSinDuplicados = MyView.ToTable(True,"nombreColumna")

URL: http://social.msdn.microsoft.com/Forums/es-ES/vbes/thread/85b0d6ec-608a-4d7c-8ba9-3d1ac9f56082

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.