Click here to Skip to main content
15,886,055 members
Articles / Desktop Programming / Windows Forms

Visual Application Launcher

Rate me:
Please Sign up or sign in to vote.
4.91/5 (37 votes)
23 Jan 2012CPOL23 min read 107.1K   3.7K   116  
A WinForms UI using WCF services, Entity Framework, repository data access, repository caching, Unit of Work, Dependency Injection, and every other buzz work you can think of!
using System;
using System.Data.Entity;
using System.Diagnostics;
using System.Linq;
using System.Data.Entity.Infrastructure;
using VAL.Model;

namespace VAL.Data
{
    /// <summary>
    /// Entity Framework repository
    /// </summary>
    public partial class EntityRepository<T> : IRepository<T> where T : PocoEntityBase
    {
        private readonly IDbContext _context;
        private IDbSet<T> _entities;

        /// <summary>
        /// Ctor
        /// </summary>
        /// <param name="context">Object context</param>
        public EntityRepository(IDbContext context)
        {
            this._context = context;
        }

        private IDbSet<T> Entities
        {
            get
            {
                if (_entities == null)
                {
                    _entities = _context.Set<T>();
                }
                return _entities;
            }
        }

        public T GetById(int id)
        {
            return Entities.Find(id);
        }

        public void Add(T entity)
        {
            if (entity.Id == 0)
            {
                this.Insert(entity);
            }
            else
            {
                this.Update(entity);
            }
        }

        private void Insert(T entity)
        {
            if (entity == null)
                throw new ArgumentNullException("entity");

            Entities.Add(entity);
        }

        private void Update(T entity)
        {
            if (entity == null)
                throw new ArgumentNullException("entity");

            if (entity.Id == 0)
                throw new ArgumentException("Cannot update entity, invalid object Id");

            var original = _context.Set<T>().Find(entity.Id);
            _context.SetModifed(original, entity);
        }

        public void Delete(T entity)
        {
            if (entity == null)
                throw new ArgumentNullException("entity");
            Entities.Remove(entity);
        }

        public virtual IQueryable<T> Table
        {
            get
            {
                if (_context.ChangeTrackingDisabled)
                {
                    return this.Entities.AsNoTracking();
                }
                else
                {
                    return this.Entities;
                }                
            }
        }
        //TODO implement IDisposable interface
    }
}

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
Technical Lead
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions