Otvoriť Uzavreté

DbContext Order By Extra Propeties Not Working #4970


User avatar
0
muhannad vytvorené

I want to order by the extra Propeties , I have a column in database Called RankOrder , I tried this

` order by user.GetProperty

`

its not working , any suggestions please


2 odpoveď(e)/dí
  • User Avatar
    0
    liangshiwei vytvorené
    Tím podpory Fullstack Developer

    Hi,

    You can try:

    .OrderBy(b => EF.Property<int>(b, "RankOrder"));
    

    You have to add RankOrder as a separate field of the table

    See: https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities#entity-extensions-ef-core

  • User Avatar
    0
    muhannad vytvorené

    Thnx , it worked

Made with ❤️ on ABP v8.2.0-preview Updated on marca 25, 2024, 15:11