Currently the sql queries at the class \DBDiff\DBDiff.Schema.SQLServer2005\Generates\SQLCommands\IndexSQLCommand.cs has a wrong column at the ORDER BY clause, currently you have:
```
ORDER BY I.object_id, I.Name, IC.column_id
```
But the correct is
```
ORDER BY I.object_id, I.Name, IC.index_column_id
```
this way you get the correct order of the columns on the index definition.
Comments: I'm currently using your tool in a project, so I'm debugging it a lot, and have made some other fixes and improvements. What is the best way to show you the changes I made?
```
ORDER BY I.object_id, I.Name, IC.column_id
```
But the correct is
```
ORDER BY I.object_id, I.Name, IC.index_column_id
```
this way you get the correct order of the columns on the index definition.
Comments: I'm currently using your tool in a project, so I'm debugging it a lot, and have made some other fixes and improvements. What is the best way to show you the changes I made?