Hi I'm trying to dynamically build query using public static IEnumerable <V> Join<T, U, K, V>( this IEnumerable <T> outer, IEnumerable <U> inner, Func <T, K> outerKeySelector, Func <U, K> innerKeySelector, Func <T, U, V> resultSelector); I have base class called BizObject which is base class for all entities. The current argorith is following First I do IQueryable source = context.GetTable( typeof (T)); Where T is a first (basic) entity type and type of returned
Read More...