Skip to content

Instantly share code, notes, and snippets.

@gideondsouza
Created December 2, 2011 11:49
Show Gist options
  • Save gideondsouza/1422970 to your computer and use it in GitHub Desktop.
Save gideondsouza/1422970 to your computer and use it in GitHub Desktop.
public interface IObservableHelper<T, TContext>
where T : class //or EntityObject
//where TContext : ObjectContext //optional
{
IObservable<IList<T>> GetAllAsObservables(Func<TContext, IQueryable<T>> funcquery);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment