Click here to Skip to main content
15,867,453 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 73.8K   1.3K   68  
CRUD (Create, Read, Update, Delete) Operation With Generic List
using System.Collections.Generic;

namespace SolutionArch.BusinessObject
{
    public class EntityCollection<T> : List<T>
    {
       
    }
}

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