Is it possible to add another where clause on this, or do I need to make another foreach?
foreach (Point point in _Points.Where(x => x.Name == "Test"))
{
}
Basically what I want to add also is where x.name = "Test" && where !x.asset.StartsWith("INV")
You can just put it in the same Where clause: