ASP.NET C#

How to Build a Custom DataView from a DataTable3 min read

Bu kodda, bir DataTable’dan bir DataView oluşturabilirsiniz, ancak olağandışı bir bükülme ile:

DataTable’daki hangi satırların DataView’e dahil edileceğine satır bazında (kodla) karar verirsiniz.




.Net framework’s DataView represents a databindable, customized view of a DataTable for filtering, sorting, searching, editing and navigation. DataView does not store any data, it represents a connected view of its corresponding DataTable. DataTable represents one table of in-memory data.

Example Output:

How to use DataView ToTable method to create a new DataTable in ado.net

How to use DataView ToTable method to create a new DataTable in ado.net

ASP.NET

 

Leave a Comment