Guest User

Untitled

a guest
Jul 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Dim db = New dbEasyLawDataContext(sqlConn.GetConnector)
  2. Dim updateCCType As cctype = (From c In db.cctypes _
  3. Where c.cctype = CCType _
  4. Select c).First
  5.  
  6. 'updateCCType.cctype = CCType
  7. updateCCType.description = Description
  8. updateCCType.mask = Mask
  9.  
  10. db.SubmitChanges()
  11. Return True
Add Comment
Please, Sign In to add comment