-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for index ordering (ASC/DESC) #4150
Comments
Is this going to happen anytime soon? Using EfCore.Shaman to workaround this issue and others at the moment... |
@jjxtra This issue is in the Backlog milestone. This means that it is not going to happen for the 2.1 release. We will re-assess the backlog following the 2.1 release and consider this item at that time. However, keep in mind that there are many other high priority features with which it will be competing for resources. |
Note that this is being done in Npgsql as part of npgsql/efcore.pg#705. It would ideally be better to have implemented here as well so that Npgsql can align (and reuse the same SortOrder enum, possibly). |
Hello any news ont this feature |
@bhugot This issue is in the Backlog milestone. This means that it is not currently planned for any upcoming release. We will re-assess the backlog for 5.0 and consider this item at that time. However, keep in mind that there are many other high priority features with which it will be competing for resources. |
Another variant of this issue is for having multiple indexes on the same column, but with different collations (supported by PostgreSQL and Sqlite, but not SQL Server and MySQL). |
Clearing Milestone to reconsider this, or part of this, for 5.0 per this comment. |
I hope this makes it for the next release. Our entity has a primary key As a work around, we have had to changed the name of the property to |
Splitting collation support out to #27209 |
After discussion on #11846, we decided that the way to handle this is to allow multiple named indexes to be created over columns, while still preserving the current semantics (i.e. addressing by ordered property set) for unnamed indexes.
Original issue:
Add support for column sort order to migrations, metadata, and reverse engineering.
CREATE INDEX IX_1 ON Table ( Col1 DESC, Col2 ASC)
)The text was updated successfully, but these errors were encountered: