ASP.NET MVC 2: How to write this Linq SQL as a Dynamic Query (using strings)?

Posted by Dr. Zim on Stack Overflow See other posts from Stack Overflow or by Dr. Zim
Published on 2010-03-28T02:25:11Z Indexed on 2010/03/28 2:33 UTC
Read the original article Hit count: 353

Filed under:
|
|
|
|

Skip to the "specific question" as needed. Some background:

The scenario: I have a set of products with a "drill down" filter (Query Object) populated with DDLs. Each progressive DDL selection will further limit the product list as well as what options are left for the DDLs. For example, selecting a hammer out of tools limits the Product Sizes to only show hammer sizes.

Current setup: I created a query object, sent it to a repository, and fed each option to a SQL "table valued function" where null values represent "get all products".

I consider this a good effort, but far from DDD acceptable. I want to avoid any "programming" in SQL, hopefully doing everything with a repository. Comments on this topic would be appreciated.

Specific question:

How would I rewrite this query as a Dynamic Query? A link to something like 101 Linq Examples would be fantastic, but with a Dynamic Query scope. I really want to pass to this method the field in quotes "" for which I want a list of options and how many products have that option.

(from p in db.Products
 group p by p.ProductSize into g
 select new Category { 
        PropertyType = g.Key,
        Count = g.Count() }).Distinct();

Each DDL option will have "The selection (21)" where the (21) is the quantity of products that have that attribute. Upon selecting an option, all other remaining DDLs will update with the remaining options and counts.

© Stack Overflow or respective owner

Related posts about LINQ

Related posts about linq-to-sql