-
I am getting the TargetInvocationException as well whenever I try to insert a DBML derived class following a fill of the class usng a linq query. Has anyone figured out why this results in a TargetInvocationException?
thank you,
John.
2009-10-26 05:14:40 UTC by jwmurray
-
File Added: blw-1.2.0.0_support_adding_items_back_into_filter_examples.patch.
2008-03-05 16:58:13 UTC by keeperofthesoul
-
When the properties of an item are changed so that the item would now be included by the filter, the item does not show.
This patch changes it so that when a previously filtered item is changed to match the current filter a ListChanged event will be raised for ItemAdded.
The patch is for 1.2.0.0.
2008-03-05 16:56:16 UTC by keeperofthesoul
-
Hi all and thanks alot for this magic control
do you have any idea to add EndEdit() methos like as what there is in BindingSource?.
2008-02-29 13:48:12 UTC by once4ever
-
If you update an object in the source list of a BindingListView where the list type overrides Equals, the update is not reflected by the BindingListView.
This is because the ObjectView wrappers are cached by the view using a Dictionary object. The default algorithm uses EqualityComparer.Default when hashing and comparing items, which uses the overridden Equals and GetHashCode methods of an...
2007-04-21 21:37:06 UTC by teljj001
-
I have added patch 1703382 which will fix this issue for some use-cases. See the patch details for more information.
Cheers,
JT.
2007-04-19 04:19:42 UTC by teljj001
-
The attached patch to AggregateListView partially addresses issue 1613968.
In short, the AmbiguousMatchException is avoided by directly invoking the BindingListView(IList) constructor.
There is a caveat to this approach: it probably won't work well with the synthetic {x}View lists. The {x}View list that is automatically created will be an empty list that is not bound to an underlying...
2007-04-19 04:18:17 UTC by teljj001
-
andrewdavey committed revision 28 to the BindingListView SVN repository, changing 1 files.
2006-12-26 23:50:33 UTC by andrewdavey
-
andrewdavey committed revision 27 to the BindingListView SVN repository, changing 1 files.
2006-12-26 23:41:56 UTC by andrewdavey
-
if u use class below as business class in BindingListView, AmbiguousMatchException occurs at protected internal object CreateProvidedView(ObjectView @object, PropertyDescriptor sourceListProperty) method.
Example Class:
==================================================
class BusinessObject
{
private string name;
private string surname;
public string Name
{.
2006-12-12 13:58:19 UTC by gokcer