我可以通过使用检查单一类型
if (e.PropertyType == typeof(EntityCollection<Search_SearchCodes>))
但是我真的很想避免所有的对象EntityCollections
if (e.PropertyType == typeof(EntityCollection))
有没有办法做到这一点?
我可以通过使用检查单一类型
if (e.PropertyType == typeof(EntityCollection<Search_SearchCodes>))
但是我真的很想避免所有的对象EntityCollections
if (e.PropertyType == typeof(EntityCollection))
有没有办法做到这一点?