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