I have a datagrid bound to a LinqBindingList resulting from a query on a BLB:
from
point in Pointsorderby point.SequenceNumber
select point
When a try to add a new point to the grid AddNewCore() method of the original the BLB is called and the new point is created with a sequence number that would place it at the end of the sorted list. However the LBL filters it out. Is there anything I need to do so that the new item gets included in the correct order in the LBL?
Thanks!
Copyright (c) Marimer LLC