vote up 0 vote down star

Hi all,

I have a DataGrid where each column has a SortExpression. I would like the sort expression to be the equivalent of "ORDER BY LEN(myField)".

I have tried

SortExpression="LEN(myField)"

but this throws an exception as it is not valid syntax. Any ideas?

flag

63% accept rate

6 Answers

vote up 3 vote down check

What about returning the len by the query already, but don't show that column, only use it as your original column's sortexpression?

I don't think that your idea is supported by default.

link|flag
vote up 0 vote down

I'm out of my element here, but what if you try SortExpression="myField.Length"

No - it gives the same error of "Cannot find column myField.Length". Thanks though :-)

link|flag
vote up 3 vote down

Depending on your SQL flavor the following could work:

SELECT
 ColumnA as FieldA
 , ColumnB as FieldB
 , LEN(ColumnA) as FieldL
FROM TableName
ORDER BY L

And then do

SortExpression="FieldL"
link|flag
vote up 0 vote down

The SortExpression parameter specifies the name of the column to sort, followed by "ASC" or "DESC" to control the order.

You could change the DataType property of the column to specifiy a user defined type whose comparer function compares string lengths. It won't be a trivial task.

Skizz

link|flag
vote up 0 vote down

Using Linq, you could write your query like:

query.OrderBy(column => column.MyField.Length);
link|flag
vote up 0 vote down

Hmmm. Had some time to test. I was able to get SortExpression="Description.Length" to work. Is this 1.1, 2.0 or 3.5?

link|flag
Hi Jason. It's Visual Studio 2008, running on .NET 2.0. I've tested it again and can't get it to work as you describe. The data is returned from a stored procedure, using a DataAdapter. Thanks, RB. – RB Sep 19 '08 at 11:14

Your Answer

Get an OpenID
or

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