在c#中将实体集合设置为空
本文关键字:设置 集合 实体 | 更新日期: 2023-09-27 17:59:28
如何将实体集合设置为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>'
user.movies.Clear();
或user.movies = null;