Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public interface ICache<TK, TV> : IEnumerable<ICacheEntry<TK, TV>>
  2. {
  3. IQueryCursor<ICacheEntry<TK, TV>> Query(string sql);
  4. }
  5.  
  6. public static IQueryable<ICacheEntry<TKey, TValue>> ToQueryable<TKey, TValue>(this ICache<TKey, TValue> cache)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement