在c#中将实体集合设置为空

时间:2013-02-14 00:09:50

标签: c# entity-framework

如何将实体集合设置为null?我尝试过这样的事情

user.movies = new List<movie>();

但是我收到了这个错误:

Cannot implicitly convert type 'System.Collections.Generic.List<MvcApplication2.dal.movie>' to 'System.Data.Objects.DataClasses.EntityCollection<MvcApplication2.dal.movie>'

1 个答案:

答案 0 :(得分:5)

user.movies.Clear();user.movies = null;