Skip to content

Latest commit

 

History

History
11 lines (4 loc) · 279 Bytes

DatatableLinqCheetsheet.md

File metadata and controls

11 lines (4 loc) · 279 Bytes

if row value starts with a word

Function Method Query Method
dt.AsEnumerable.Where(Function(row) row("Name").toString.StartsWith("bajaj")) (From row In dt.Select() Where row("Name").ToString.StartsWith("bajaj") Select row).ToArray