Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using dapper for a mvc3 project at work, and I like it. However, how are you supposed to layer the application when using dapper? Currently I just have all my sql stuffed directly in the controller (slap) but I was thinking of making a class with static strings.. So I could do

var reports = Dapper.Query<Report>(conn, MySql.ReportsRunningQuery)

How do you store your sql when using dapper?

share|improve this question
presumably that is a class with static strings, rather than an enum? – Marc Gravell May 13 '11 at 6:43
Well. Yes. Bad morning thoughts... (edited) – Christian Wattengård May 13 '11 at 6:46

1 Answer

up vote 14 down vote accepted

I would say put the sql where you would have put the equivalent LINQ query, or the sql for DataContext.ExecuteQuery. As for where that is... well, that is up to you and depends on how much separation you want.

However, personally I see no benefit hiding the SQL in a separate class away from the Query<T> call - you want to see them in context so you can easily verify the data (and indeed, the parameters). You might also be constructing the query (still parameterised) in situ. But for a regular static query I would keep the TSQL as a literal near the code, unless I have good reason to need it abstracted, i.e.

var reports = conn.Query<Report>(@"
select x.blah, y.blah
from x (snip)
where x.ParentId = @parentId and y.Region = @region", new {parentId, region});

(note also the alternative extension method usage in the above)

IMO, the key in the above is that it is extremely unlikely that you would ever re-use that query from any other place - the logic would instead be put into a method, and that method called from multiple places. So the only other reason you might use to hide the query behind a central wrapper is if you need to support different database providers (with different SQL dialects). And that is rarer than people make out.

share|improve this answer
About that extension method usage... How do I make that work? 'Cause mine doesn't :/ – Christian Wattengård May 13 '11 at 6:55
1  
@Christian - just make sure you have a using Dapper; directive – Marc Gravell May 13 '11 at 7:00
Thanks. But putting all the sql in the controller, wouldn't you basically be making a "fat controller"? And depending on who you ask, isn't that a "Bad Thing"? – Christian Wattengård May 13 '11 at 7:27
4  
@Christian I deliberately didn't say anything about the controller. If you choose to do your data access in your controller, then arguing over where the TSQL lives is a moot point - the data access is still there. Fatness is about what it does, not the lines-of-code count. – Marc Gravell May 13 '11 at 7:35
1  
@Robert no problem; happy to consider anything that is logged as a feature suggestion. We have added a number of features due to community suggestion - some of which we now use internally, some we don't. – Marc Gravell May 21 '11 at 14:47
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.