show/hide this revision's text 2 deleted 13 characters in body

Why don't you define this WHERE clause as a const in your codebehind, so you could define. Define:

protected const string SELECTCLAUSE = 
"SELECT Blah FROM TableName WHERE (StringField = '{0}')";

Then your SelectCommand property would be:

SelectCommand='<%# Eval("Bar", SELECTCLAUSE ) %>'
show/hide this revision's text 1

Why don't you define this WHERE clause as a const in your codebehind, so you could define:

protected const string SELECTCLAUSE = 
"SELECT Blah FROM TableName WHERE (StringField = '{0}')";

Then your SelectCommand property would be:

SelectCommand='<%# Eval("Bar", SELECTCLAUSE ) %>'