By Michael Washington on
5/22/2010 11:50 AM
|
By Michael Washington on
5/19/2010 8:15 PM
|
By Michael Washington on
5/15/2010 9:36 AM

Will OData eliminate the need for standard web services? Here is a simple example of how OData works. This example does not use a database connection so that you can easily see just the OData parts...
|
By Michael Washington on
5/10/2010 7:45 AM
Over the years I have created several DotNetNuke Silverlight File managers. Each one is actually different and handles a different scenario. What they all have in common, is that they use Silverlight to enable uploads of large files. Here is the breakdown: Silverlight FileUploader – This allows you to upload all the files into one directory. No matter how many instances of this module you place in your site, they will all show the files from the single location. Personal File Upload – This module allows each user of your DotNetNuke website to have their own file structure. You can also indicate which role can use this module. DotNetNuke Silverlight File Manager...
|
By Michael Washington on
5/9/2010 7:57 AM
|
By Michael Washington on
4/26/2010 11:39 PM
|
By Michael Washington on
4/25/2010 1:11 PM
With “ Simplified MVVM” you can simply place your web service methods in your Model. The problem you run into, is how do you make an asynchronous web service call and fill a collection in your ViewModel? One method I have employed in the past is to pass an instance of the ViewModel to the Model, however, the problem this causes, is that you have now tightly coupled your ViewModel and your Model. It is also difficult to consume your Model from multiple ViewModels when you do it this way. What you really want to do, is place your web...
|
By Michael Washington on
4/7/2010 8:07 PM
|
By Michael Washington on
4/4/2010 4:46 PM
In my article Silverlight MVVM File Manager, I showed how a designer could use the MVVM pattern to create a UI from scratch, without writing a line of code. However, while the run-time file manager looked like this:  ...
|
By Michael Washington on
3/27/2010 7:58 PM
I am really excited about the future of web development using Silverlight. Recent enhancements to Microsoft Expression Blend 4 have enabled the use of the MVVM pattern in a straightforward manner using behaviors. I have posted a sample project that demonstrates an implementation of the MVVM (Model-View-View Model) pattern to create a simple Silverlight File Manager. This pattern allows a programmer to create an application that has absolutely no UI. The programmer only creates a ViewModel and a Model. A designer with no programming ability at all, is then able to start with a blank page and completely create...
|