Tagged Questions
1
vote
1answer
1k views
PredicateBuilder, VB.net and Where()
I am building a predicate in VB.net using the PredicateBuilder class from the LinqKit library.
My datasource is a manually constructed datatable.
All the examples I've found show folks creating the ...
3
votes
1answer
1k views
LINQ PredicateBuilder multiple OR starting with PredicateBuilder.True<>
I have an entity like this:
public class Product()
{
public string Name { get; set; }
}
I want to implement a search for keywords on the Name property so that they're OR'ed. In other words, a ...