We were trying to do a select using a predicate expression, but the results should have a include with an entity that has a foreign key relation, kinda like:
var products = con.Select<Product, Category, Product>(p => p.Name.Contains("bike"));
so I can have all the products that have bike in the name with the category on each
Is this possible?
Thanks for the amazing component and for the help!
Hello!
We were trying to do a select using a predicate expression, but the results should have a include with an entity that has a foreign key relation, kinda like:
so I can have all the products that have bike in the name with the category on each
Is this possible?
Thanks for the amazing component and for the help!