<!-- What problem are you trying to solve? --> I want to be able to use Fluent API to specify more index options. I have a particular interest in `SORT_IN_TEMPDB` and `DATA_COMPRESSION`. <!-- Describe the solution you'd like --> Want something like: ``` indexBuilder.IsSortedInTempDb(true); indexBuilder.HasDataCompression(DataCompression.Page); ``` This can be done by following the pattern set by the fill factor option - #20634. SORT_IN_TEMPDB can be ON or OFF DATA_COMPRESSION has the options NONE, ROW, and PAGE ([link](https://learn.microsoft.com/en-us/sql/t-sql/statements/create-index-transact-sql?view=sql-server-ver16#data_compression)) I could work this if determined it would be a good first issue.