Tagged Questions
The bindable-linq tag has no wiki summary.
17
votes
5answers
2k views
Bindable Linq vs. Continuous Linq
Does anybody know and can explain the major difference between Bindable Linq and Continuous Linq?
•Bindable LINQ: www.codeplex.com/bindablelinq
•Continuous LINQ: www.codeplex.com/clinq
One more ...
2
votes
3answers
233 views
JQuery: Is there a way to do Flex-style data bindings?
Several new UI/Query frameworks allow you to "bind" UI elements to data structures. When data in the structure is updated, the change propagates to the UI element, automatically.
Some examples of this ...
0
votes
2answers
65 views
What are the benefits of the bindable Linq?
I am new to Linq just started using in the projects for normal bindings and sql queries...
Than i came across Bindable Linq term..
Can someone tell me how to use it and how it is useful??
Where to ...
0
votes
2answers
80 views
BindableLinq collection nesting
I'm wondering if there is a way to do this in bindable linq:
var LeftItems = AllItems.Where(p => !RightItems.Contains(p)));
I have tried liberal use of the AsBindable(), but it doesn't work for ...
0
votes
1answer
710 views
BindableAttribute, Combobox, Selectedvalue property - WinForms
I am deriving from combobox (WinForms) and am providing a new implementation for the Selectedvalue property.
It works fine as is, but any change to the selectedvalue property is not updating other ...