Hi Stavros
I guess below line is creating problem
Pins = pinTable.Where(pin
=> true).ToCollectionView();
ToCollectionView(); is always return count as 0. this is the bug here. What do you think Josh Twist?
Stavros: I think below line can help your program to running smooth
List<Pin> Pins = await pinTable.Where(pin
=> true).ToListAsync();