I have search service that will give me the list of Guids of my entity with the correct order. For example I search service gave me this result:
// Assuming you have a list of Guids named 'guidList'
List<Guid> guidList = new List<Guid>
{
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid()
};
Now, I need to do a query to the database to get those entities:
using (var context = new YourDbContext())
{
var students = context.Students
.Where(e => guidList.Contains(e.Guid));
}
I want to get my entities in the same order as my guidList. Doing AsEnumerable will not work here because I will add another query at the end and it may affect to performance
This is generic function which dynamically generates Expression Tree in the following manner:
Usage in your case is simple:
And implemntation: