How do I Convert a System.Collections.Generic.List<T> to a System.Data.Linq.EntitySet<T> ?
Don't think you can convert a List<T> to an EntitySet<T> but you can put the content of your list in the entitySet.
var list = new List<string> { "a", "b", "c" };
var entitySet = new EntitySet<string>();
entitySet.AddRange(list);
Here's a extension method for that:
public static EntitySet<T> ToEntitySet<T>(this IEnumerable<T> source) where T : class
{
    var es = new EntitySet<T>();
    es.AddRange(source);
    return es;
}
                        var list = new List<string> 
{ 
    "element1", "element2" 
};
var entitySet = new EntitySet<string>();
entitySet.AddRange(list);
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With