Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Silverlight TV 44: Top Four Questions from the WCF RIA Services Forum
Sep 14, 2010 at 1:14 PMThanks, that will address the second issue. But what about when Item.Price changes? How would I update Order.Total in that scenario?
If memory serves, the changed event of an Entity property only fires once, which doesn't really work how you would expect it. So am I left to create my own event and handle this scenario manually?
Thanks again!
Silverlight TV 44: Top Four Questions from the WCF RIA Services Forum
Sep 14, 2010 at 8:32 AMI also wanted to add the following scenario. I have had no luck supporting this type of domain model pattern with WCF RIA, due to lack of supplied events.
Debug.WriteLine(Order.Total); // outputs 0
Item newItem = new Item() { Price = 30 };
Order.Items.Add(newItem);
Debug.WriteLine(Order.Total); // outputs 30
Order.Items.Remove(newItem);
Debug.WriteLine(Order.Total); // outputs 0
Thanks again!
Silverlight TV 44: Top Four Questions from the WCF RIA Services Forum
Sep 13, 2010 at 7:31 PMHow do you create a calculated field based on child objects? For example, if you have an Order object that exposes a Total property based on a child Item.Price value, how can Item.Price notify Order to update its Total property (Order.Total) ?
So you would have Order.Items[1].Price = 2.25; Then Order.Total would be updated to reflect the change made to the Item.Price property.
Thanks!
Bruno Sonnino on DiskPie Pro in WPF
Apr 01, 2010 at 6:58 AMExcellent, thanks!
Bruno Sonnino on DiskPie Pro in WPF
Mar 31, 2010 at 7:53 PMBruno, does the download include the source as well?
If not, can you briefly explain the UI composition that holds the main chart towards the middle and the 2 smaller charts to the right.
Also, are you using any UI frameworks such as PRISM or MEF?
Thanks and nice work!
Silverlight TV 13: MVVM Light Toolkit
Mar 12, 2010 at 7:07 AMGreat content, thanks!
John, when watching the vids in full screen mode, the vs ide is always blurry. Can you fix that in future vids? It's terribly difficult to see the code.
Thanks!
MEF & Silverlight 4 Beta - Part 3, Catalogs
Feb 28, 2010 at 11:08 AMReally great job, Mike, thanks! I really enjoy how you dig into the framework so the average developer is educated and not blinded by the abstraction. I really enjoy watching all of your presentations and look forward to seeing more!
Silverlight TV 10: Jesse Liberty Explains the Hyper Video Project
Feb 23, 2010 at 9:24 PMI really dig what you're doing, Jesse. Thanks for the blog posts, the code, and all of your efforts thus far!