如题,netcore 使用反射的GetProperty时提示System.Reflection.AmbiguousMatchException:“Ambiguous match found.”
已知道原因是因为类中有重载属性
public new List<OrderCommodity> Commoditys{get;set;}
请问大家,在不改变类属性结构下,使用GetProperty时用BindingFlag值能解决这个错误吗?
标签:
也可以试下, GetProperties() ,然后再过滤嘛