Click here to Skip to main content
15,894,343 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I have taken all my data into DataView and I performed some manipulation on DataView. Then I converted the DataView to DataTable,
but the manipulations I performed on view did not affect the table.
Posted
Updated 10-Nov-10 3:10am
v2

1 solution

First Create a Dataset from some name .... and then inside of it create a datatable(DataTable is a virtual table). To create the datatable right click the empty surface of created dataset and select a option called TableAdapter. After that select the certain Tables from your SQL table set and select all wanted attributes by clicking Query Builder.you can also write a Query Manually. After that you can create the datatable like a View...

After go your certain DataView and from the arrow head on the top select the source as created datatable inside the dataset...

It will work in form load... surely...! :laugh:
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900