0
2
llucycodes42
This code uses the .Where method of the LINQ to SQL query engine to filter the collection of items based on a field that contains a text value.
Shortcut: linq_where
var data = from item in collection
where .FieldName.Contains("Text")
select ;