tags:

views:

31

answers:

1

Hi,

I am looking for a third party component which allows a non technical user to create simple adhoc LINQ queries by dragging and dropping the available fields and run it against a data model that I will be populating using Entity Framework. I've used http://devtools.korzh.com/eq/dotnet/ component previously to generate adhoc SQL queries but I want something similar for LINQ.

I am looking for only simple query generator, the most complex queries will include group by on couple of columns with summation on say revenue field(Or any measure field).

Do any of you guys know of any visually appealing tool already available in the market? If not then may be suggest an approach on how I can build it myself!

Many Thanks

Mithun

A: 

Best I have seen is LinqPad, its not the best "visual" query builder out there but it is pretty easy to test out LINQ queries.

alt text

Nix
Thanks, I know and use LINQPad, it's a very good tool for someone technical like us. But I am looking for a drag and drop kind of tool for end users who have no clue what LINQ is, and behind the scenes that tool should generate LINQ query, so I can capture the query string and do whatever I have to do with it. I've googled/binged a lot to find something but unfortunately I couldn't find any. I might just have to write my own I guess.
Mithun Bose