Benim modeldir başka List tarafından bir Liste
class Person
{
public int Id {get; set; }
public string Name {get; set; }
}
İki koleksiyonları var.
var orderedByIdList = tobeSortedList.OrderBy(x => etalonList.IndexOf(x.Id));
Ama böyle bir hata tanıştım: denedim
List<Person> etalonList = new List<Person>()
{
new Person() { Id=10, Name="Jon"},
new Person() { Id=4, Name="Ben"},
new Person() { Id=11, Name="Magnus"},
new Person() { Id=8, Name="Joseph"},
};
List<Person> toBeSortedList = new List<Person>()
{
new Person() { Id=11, Name="Magnus"},
new Person() { Id=4, Name="Ben"},
new Person() { Id=10, Name="Jon"},
new Person() { Id=8, Name="Joseph"},
};
: Ve toBeSortedList
etalonList
gibi sıralamak istiyorum
cannot convert from 'int' to 'SOConsoleApplication.Person'
Belki başka önerileriniz ?
int index;
var etalonDictionary = etalonList.ToDictionary(k => k.Id, v => index++);
Sonra sözlükten kimliği geri bulmak ve sıralama için kullanan:
İlk sıraylaetalonList
gelen bir sözlük yaratacak
tobeSortedList.OrderBy (x => etalonList.IndexOf (x.Id)) ToList(): Burada
sonunda olmayan varolan öğeleri koyar LINQ olduğunu – CodeConstruct@CodeConstruct Bu da işe yaramıyor. –
Bunu bir Sınıf (Kişisel) – CodeConstruct