vote up 3 vote down star

Hello,

A project I'm working on at the moment involves refactoring a C# Com Object which serves as a database access layer to some Sql 2005 databases.

The author of the existent code has built all the sql queries manually using a string and many if-statements to construct the fairly complex sql statement (~10 joins, >10 sub selects, ~15-25 where conditions and GroupBy's). The base table is always the same one, but the structure of joins, conditions and groupings depend on a set of parameters that are passed into my class/method.

Constructing the sql query like this does work but it obviously isn't a very elegant solution (and rather hard to read/understand and maintain as well)... I could just write a simple "querybuilder" myself but I am pretty sure that I am not the first one with this kind of problem, hence my questions:

  • How do you construct your database queries?
  • Does C# offer an easy way to dynamically build queries?
flag

11 Answers

vote up 5 vote down check

I used C# and Linq to do something similar to get log entries filtered on user input (see http://stackoverflow.com/questions/11194/conditional-linq-queries):

IQueryable<Log> matches = m_Locator.Logs;

// Users filter
if (usersFilter)
    matches = matches.Where(l => l.UserName == comboBoxUsers.Text);

 // Severity filter
 if (severityFilter)
     matches = matches.Where(l => l.Severity == comboBoxSeverity.Text);

 Logs = (from log in matches
         orderby log.EventTime descending
         select log).ToList();

Edit: The query isn't performed until .ToList() in the last statement.

link|flag
How are a bunch of IF statements a dynamic query? – Esteban Araya Sep 15 '08 at 15:38
The IQueryable<Log> gets converted to SQL in the last line, where the query is actually run; all Where LINQ statements become one SQL WHERE clause. This is the way I do highly variable SQL as well. It's much cleaner than trying to write a stored proc to do it. – Kyralessa Sep 15 '08 at 15:41
@Kyralessa: Thanks for the explanation. – Esteban Araya Sep 15 '08 at 15:43
I think this is what I've been looking for... Thanks! – Ben Sep 16 '08 at 9:06
vote up 0 vote down

Linq to SQL together with System.Linq.Dynamic brings some nice possibilities.

I have posted a couple of sample code snippets here: http://blog.huagati.com/res/index.php/2008/06/23/application-architecture-part-2-data-access-layer-dynamic-linq

...and here: http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/717004553931?r=777003863931#777003863931

link|flag
vote up 0 vote down

I understand the potential of Linq but I have yet to see anyone try and do a Linq query of the complexity that Ben is suggesting

the fairly complex sql statement (~10 joins, >10 sub selects, ~15-25 where conditions and GroupBy's)

Does anyone have examples of large Linq queries, and any commentary on their manageability?

link|flag
I'm probably going to spend some time on trying to reduce the complexity... – Ben Sep 16 '08 at 8:34
vote up 0 vote down

Unless executiontime is really important, I would consider refactoring the business logic that (so often) tends to find its way down to the datalayer and into gazillion-long stored procs. In terms of maintainabillity, editabillity and appendabillity I always try to (as the C# programmer I am) lift code up to the businesslayer.

Trying to sort out someone elses 8000 line SQL Script is not my favorite task.

:)

//W

link|flag
vote up 0 vote down

If using C# and .NET 3.5, with the addition of MS SQL Server then LINQ to SQL is definitely the way to go. If you are using anything other than that combination, I'd recommend an ORM route, such as nHibernate or Subsonic.

link|flag
Linq to SQL it is then :) – Ben Sep 16 '08 at 8:32
vote up 0 vote down

Its worth considering if you can implement as a parameterised strored procedure and optimise it in the database rather than dynamically generating the SQL via LINQ or an ORM at runtime. Often this will perform better. I know its a bit old fashioned but sometimes its the most effective approach.

link|flag
Yes, we have looked into that already but it doesn't really work as our queries change to much... – Ben Sep 15 '08 at 15:36
vote up 0 vote down

This is the way I'd do it:

public IQueryable<ClientEntity> GetClients(Expression<Func<ClientModel, bool>> criteria)
    {
        return (
            from model in Context.Client.AsExpandable()
            where criteria.Invoke(model)
            select new Ibfx.AppServer.Imsdb.Entities.Client.ClientEntity()
            {
                Id = model.Id,
                ClientNumber = model.ClientNumber,
                NameFirst = model.NameFirst,
                //more propertie here

            }
        );
    }

The Expression parameter you pass in will be the dynamic query you'll build with the different WHERE clauses, JOINS, etc. This Expression will get Invoked at run time and give you what you need.

Here's a sample of how to call it:

public IQueryable<ClientEntity> GetClientsWithWebAccountId(int webAccountId)
	{
		var criteria = PredicateBuilder.True<ClientModel>();
		criteria = criteria.And(c => c.ClientWebAccount.WebAccountId.Equals(webAccountId));
		return GetClients(criteria);
	}
link|flag
vote up 0 vote down

Check this

link|flag
You might want to include a description of "this". – Mark Cidade Sep 15 '08 at 23:13
vote up 0 vote down

I answered a similar question here and here.

link|flag
You might want to include a description of "here" and "here". – Mark Cidade Sep 15 '08 at 23:13
vote up 0 vote down

You may want to consider LINQ or an O/R Mapper like this one: http://www.llblgen.com/

link|flag
vote up 1 vote down

LINQ is the way to go.

link|flag

Your Answer

Get an OpenID
or

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