Guest User

Untitled

a guest
Sep 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. How to refresh the gridView using LinqToSql query after doing the update or Insert?
  2. Dim query = From ii In o_dbContext.Products Select ii
  3. o_DataGridView.DataSource = q
  4.  
  5. Dim query = From ii In o_dbContext.Products Select ii.fProdId, ii.fProdName
  6. o_DataGridView.DataSource = q
Add Comment
Please, Sign In to add comment