Suppose I have some data like:
I want to fetch data in an order like, first give me all with IsActive == true and sort it in an alphabetical order by account name and then the false one sorted by account name.
How can I do it by _context.table.OrderBy() or some other method?