Lets say i have collection IList<Items> items = GetItems();
I want to convert that collection in to collection of MyDbSet<Items>
MyDbSet declared like that: public class MyDbSet<T> : IDbSet<T> where T : class
How can i do that with the less amount of code, possibly it is better to go with linq?