Perform sorting by a given field of a given table

1

I have the following syntax

The instruction below performs the ordering by the Lot Number field of the Batch

var lvmLotes = db.Lotes.ToList () Where (x => x.DataAbate.Date == Search) .OrderBy (x => x.Library); p>

I need to change the field that sorts the list, how do I sort through the Initial Sequence field of the Gender table     

asked by anonymous 19.06.2018 / 15:20

0 answers