I always need to delete objects before sending them over the wire.
Background:
Position is the tough rival that LINQ to SQL generated based on my table. It stores maternal data data.
SPosition is a lightweight object that only stores my latitude and length.
Code:
List<SPosition> spositions = new List<SPosition>(); foreach (var position in positions)
How can I use some LINQ magic to clean it up a bit?
source share