问题
How do I Convert a System.Collections.Generic.List<T>
to a System.Data.Linq.EntitySet<T>
?
回答1:
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;
}
回答2:
var list = new List<string>
{
"element1", "element2"
};
var entitySet = new EntitySet<string>();
entitySet.AddRange(list);
来源:https://stackoverflow.com/questions/2848680/generic-list-to-entityset-conversion