I have a GridView being populated from a non-SQL database that we use internally. One of those fields is a stockroom location. (Example: AAA, AAB, AAC, etc.)

In another database (SQL) I keep a list of all stockrooms and give them a weight. The weight is just an integer; the higher the integer, the further away the stockroom is.

I need to sort my GridView based on those stockroom weights. How can I have my GridView sort depend on data from another table? This seems like it should be an easy solution, but I'm getting stuck. If it matters, the GridView is bound to a System.Collections.ObjectModel.Collections<> class.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The SortExpression property does support "complex" property navigation. Have you tried using this as the SortExpression for your GridView column:

<asp:TemplateField SortExpression="Stockroom.Weight">
link|improve this answer
I ended up implementing something close to this and it worked for me. Thanks for the answer! – Gary the Llama Oct 2 '09 at 15:56
feedback

I am assuming that you have the data access code already worked out. So, my suggestion would be to;

  1. Make a class that has all the information you need from the non-sql database and the column you need from the sql database.
  2. Use your data access code to retrieve the information and populate something like a binding list with objects of the type you created in 1
  3. You can bind the gridview to that binding source so you can sort on that value
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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