Click here to Skip to main content
15,884,986 members
Articles / Programming Languages / C# 4.0

Cache System in Silverlight 5 RIA Application - Part 2 - Data write

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
17 Nov 2012CPOL2 min read 9.1K   3  
An effective way to implement a caching system in Silverlight (MVVM) RIA
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using SilverlightClient.Common;
using SilverlightClient.Core;
using SilverlightClient.Core.ViewModels;

namespace SilverlightClient
{
    public partial class MainPage : UserControl
    {
        private MainViewModel viewModel;

        public MainPage()
        {
            InitializeComponent();

            SetDataContext();
        }

        void SetDataContext()
        {
            viewModel = new MainViewModel();
            this.DataContext = viewModel;
        }

        private void LoadUser(object sender, RoutedEventArgs e)
        {
            ModelManager.Instance.Load(this.viewModel, OperationType.LOAD_USER, new Object[] {"Username", "Password"});
        }

        private void Reset(object sender, RoutedEventArgs e)
        {
            viewModel.UserContext = null;
        }

        private void SaveUser(object sender, RoutedEventArgs e)
        {
            var ucToSave = this.viewModel.UserContext.Clone();
            ucToSave.Email = txtEmail.Text;

            ModelManager.Instance.Write(this.viewModel, OperationType.WRITE_USER, new Object[] { ucToSave });
        }

        private void SaveChanges(object sender, RoutedEventArgs e)
        {
            ModelManager.Instance.WritePendingChanges();
        }

        private void ForceWrite(object sender, RoutedEventArgs e)
        {
            var ucToSave = this.viewModel.UserContext.Clone();
            ucToSave.Email = txtEmail.Text;

            ModelManager.Instance.WriteForce(this.viewModel, OperationType.WRITE_USER, new Object[] { ucToSave }, true);
        }

        private void SaveMvvm(object sender, RoutedEventArgs e)
        {
            ModelManager.Instance.WriteForce(this.viewModel, OperationType.WRITE_USER, new Object[] { this.viewModel.UserContext }, false);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions