Click here to Skip to main content
15,885,906 members
Articles / Programming Languages / C#

Save Temporary Data with Entity Framework Self-Tracking Entity

Rate me:
Please Sign up or sign in to vote.
4.89/5 (8 votes)
28 Dec 2011CPOL9 min read 50.9K   1K   24  
In this article, I will show you how to use Entity Framework Self-Tracking Entity to save temporary data in Enterprise Applications.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Demo.Models.DataInterfaces;
using System.Data.Entity;
using Demo.Models.Domain;

namespace Demo.Data
{
    public class Context: DbContext, IContext
    {
        SaveTempDataWithSTEEntities _entityFrameworkContext;

        public Context()
        {
        }

        public SaveTempDataWithSTEEntities EntityFrameworkContext
        {
            get
            {
                if (_entityFrameworkContext == null)
                {
                    _entityFrameworkContext = new SaveTempDataWithSTEEntities();
                }
                return _entityFrameworkContext;
            }
        }

        public int Commit()
        {
            return _entityFrameworkContext.SaveChanges();
        }

        public void Clear()
        {
            if (_entityFrameworkContext != null)
            {
                _entityFrameworkContext.Dispose();
                _entityFrameworkContext = null;
            }
        }
    }
}

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
Senior Software Developer from New Jersey, USA

Have 15+ years experience on enterprise application development with various technologies.

Comments and Discussions