.NET
clinq.txt
Associated article: Continuous LINQ
Tags: Database .NET Design
Published source code accompanying the article by Kevin Hoffman on Continuous LINQ, one one expansion made possible through language extensions and LINQ on the .NET Framework 3.5.
Continuous LINQ
by Kevin Hoffman
Listing One:
public static class ContinuousQueryExtension
{
#region Where
public static ContinuousCollection<T> Where<T>(
this ContinuousCollection<T> source, Func<T, bool> filterFunc) where T: IEquatable<T&...


