Click here to Skip to main content
15,891,904 members
Articles / Desktop Programming / XAML

A Pluggable Architecture for Building Silverlight Applications with MVVM

Rate me:
Please Sign up or sign in to vote.
4.71/5 (23 votes)
6 Jul 2011CPOL7 min read 145.4K   2.2K   90  
This article describes building a sample Silverlight application with the MVVM Light toolkit, WCF RIA Services, and a pluggable application architecture using MEF.
using System;
using System.ComponentModel.DataAnnotations;
using System.Data.Objects.DataClasses;

namespace IssueVision.Data.Web
{
    // The MetadataTypeAttribute identifies IssueTypeMetadata as the class
    // that carries additional metadata for the IssueType class.
    [MetadataTypeAttribute(typeof(IssueType.IssueTypeMetadata))]
    public partial class IssueType
    {
        // This class allows you to attach custom attributes to properties
        // of the IssueType class.
        //
        // For example, the following marks the Xyz property as a
        // required property and specifies the format for valid values:
        //    [Required]
        //    [RegularExpression("[A-Z][A-Za-z0-9]*")]
        //    [StringLength(32)]
        //    public string Xyz { get; set; }
        internal sealed class IssueTypeMetadata
        {

            // Metadata classes are not meant to be instantiated.
            private IssueTypeMetadata()
            {
            }

            public byte IssueTypeID { get; set; }

            public string Name { get; set; }
        }
    }
}

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 (Senior)
United States United States
Weidong has been an information system professional since 1990. He has a Master's degree in Computer Science, and is currently a MCSD .NET

Comments and Discussions