Click here to Skip to main content
15,881,204 members
Articles / Web Development / ASP.NET

CRUD (Create, Read, Update, Delete) Operation With Generic List

Rate me:
Please Sign up or sign in to vote.
4.88/5 (26 votes)
27 May 2010CPOL2 min read 74K   1.3K   68  
CRUD (Create, Read, Update, Delete) Operation With Generic List
using System;
using System.Linq;
using System.Collections.Generic;
using SolutionArch.BusinessObject;
using System.Reflection;


namespace SolutionArch.Collection.Entity
{
    public static class Utility 
    {
        class Expression
        {
            public PropertyInfo     PropertyInfo;
            public string           ExpressionPropertyName;
            public string           ExpressionPropertyVal;
        }

        /// <summary>
        /// Queries datasource based on expression
        /// </summary>
        /// <typeparam name="T">Generic data source</typeparam>
        /// <param name="EntityCollection">Data source - Collection</param>
        /// <param name="FindExpression">Find expression  as Property = Value </param>
        /// <returns></returns>
        public static EntityCollection<T> FindByExpression<T>(this EntityCollection<T> EntityCollection, string FindExpression)
        {
            Expression          objExpression   = GetPropertyInfo(EntityCollection, FindExpression, '=');
            // Find all matches -- Lamda Expression
            IEnumerable<T>      objEntityList   = EntityCollection.FindAll(objC => objExpression.PropertyInfo.GetValue(objC, null).ToString()
                                                                              == objExpression.ExpressionPropertyVal);
            EntityCollection<T> objEntities     = new EntityCollection<T>();
            // Create a new entity collection with mathced item
            foreach (var objEntity in objEntityList) objEntities.Add(objEntity);
            return objEntities;
        }

        /// <summary>
        /// Remove element from the collection based on the query expression
        /// </summary>
        /// <typeparam name="T">Generic data source</typeparam>
        /// <param name="EntityCollection">Data source - Collection</param>
        /// <param name="FindExpression">Find expression  as Property = Value</param>
        /// <returns></returns>
        public static EntityCollection<T> DeleteByExpression<T>(this EntityCollection<T> EntityCollection, string FindExpression)
        {
            Expression      objExpression    = GetPropertyInfo(EntityCollection, FindExpression, '=');
            // Find all matches -- Lamda Expression
            IEnumerable<T>  objEntityList    = EntityCollection.FindAll(objC => objExpression.PropertyInfo.GetValue(objC, null).ToString()
                                                                        == objExpression.ExpressionPropertyVal);
            // Remove the matches from entity list
            foreach (var objEntity in objEntityList) EntityCollection.Remove(objEntity);
            return EntityCollection;
        }

        /// <summary>
        /// Sort datasource based on expression
        /// </summary>
        /// <typeparam name="T">Generic data source</typeparam>
        /// <param name="EntityCollection">Data source - Collection</param>
        /// <param name="SortExpression">Sort expression  as Property Desc , Default sort order is ASC</param>
        /// <returns></returns>
        public static EntityCollection<T> SortByExpression<T>(this EntityCollection<T> EntityCollection, string SortExpression)
        {
            bool            blnDescending = false;
            IEnumerable<T>  objEntityList;
            Expression      objExpression = GetPropertyInfo(EntityCollection, SortExpression, ' ');

            blnDescending = SortExpression.ToUpper().Contains("DESC");
            // Sort in Desc order
            if (blnDescending) objEntityList = EntityCollection.OrderByDescending(objX => objExpression.PropertyInfo.GetValue(objX, null));
            // Sort in ASC order
            else objEntityList = EntityCollection.OrderBy(objX => objExpression.PropertyInfo.GetValue(objX, null));

            EntityCollection<T> objEntities = new EntityCollection<T>();
            // Create a new entity collection with sorted items
            foreach (var objEntity in objEntityList)  objEntities.Add(objEntity);
            return objEntities;
        }

        /// <summary>
        /// Populate property info
        /// </summary>
        /// <typeparam name="T">Generic data source</typeparam>
        /// <param name="EntityCollection">Data source - Collection</param>
        /// <param name="strExpression">Expression</param>
        /// <param name="chSplitChar">Split Char</param>
        /// <returns></returns>
        private static Expression GetPropertyInfo<T>(EntityCollection<T> EntityCollection, string strExpression, char chSplitChar)
        {
            // Expression format should be like 
            // Property Desc  - for sort operation
            // Property = value - for Find and delete operation
            // parts[0] will have property name
            // Parts[1] will have sort order or value
            string[] strParts                       = strExpression.Trim().Split(chSplitChar);

            // Property details using reflection
            PropertyInfo objPropInfo                = typeof(T).GetProperty(strParts[0]);

            // Incase of invalid property throw an exception
            if (objPropInfo == null) throw new Exception("Invalid '" + strParts[0] + "' in + " + typeof(T).Name + "'");
            
            Expression objExpression                = new Expression();
            objExpression.PropertyInfo              = objPropInfo;
            objExpression.ExpressionPropertyName    = strParts[0];
            objExpression.ExpressionPropertyVal     = strParts.Length > 1 ? strParts[1] : string.Empty;

            return objExpression;
        }

    }
}

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) Reputed MNC in Kolkata
India India
Bibhas has 8 years of extensive experience in application development with exposure to business requirement study, system analysis and designing, coding ,testing,
implementation, end user training and client Interaction.

He was the part of application development team and worked for industry leading organizations like "ConocoPhillips", "Abbey National Bank" and “DHL".

Posses sound experience as a technical architect and all part of software development lifecycle.

His interest includes in Microsoft Technologies (ASP.NET 3.5 & SQL Server), Design Pattern and wide variety of internet technologies like AJAX, JQUERY etc.

Comments and Discussions