AmbiguousMatchException
Status: Beta
Brought to you by:
andrewdavey
if u use class below as business class in BindingListView, AmbiguousMatchException occurs at protected internal object CreateProvidedView(ObjectView<T> @object, PropertyDescriptor sourceListProperty) method.
class BusinessObject
{
private string name;
private string surname;
public string Name
{
get { return name; }
set { name = value; }
}
public string Surname
{
get { return surname; }
set { surname = value; }
}
public BusinessObject(string name, string surname)
{
this.name = name;
this.surname = surname;
}
public IList<String> Defaults
{
get
{
return null;
}
}
}
=========================================
Problem is at
.
.
.
public IList<String> Defaults
{
get
{
return null;
}
}
.
.
.
function.
Logged In: YES
user_id=1281267
Originator: NO
I have added patch 1703382 which will fix this issue for some use-cases. See the patch details for more information.
Cheers,
JT