Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7047589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:47:23+00:00 2026-05-28T02:47:23+00:00

I am new to LINQ to SQL and attempting to create a generic Data

  • 0

I am new to LINQ to SQL and attempting to create a generic Data Access Object (DAO) for the basic Create, Read, Update, and Destroy (CRUD) methods so that I can reuse the code. I was successful in creating a generic method that will delete any entity by using the code below but, I was wondering if anyone knows how to create a generic method that will select any entity by a common Id field that exists on all tables.

    /// <summary>
    /// Generic method that deletes an entity of any type using LINQ
    /// </summary>
    /// <param name="entity"></param>
    /// <returns>bool indicating whether or not operation was successful</returns>
    public bool deleteEntity(Object entity)
    {
        try
        {
            DomainClassesDataContext db = new DomainClassesDataContext();
            db.GetTable(entity.GetType()).Attach(entity);
            db.GetTable(entity.GetType()).DeleteOnSubmit(entity);
            db.SubmitChanges();
            return true;
        }
        catch(Exception ex)
        {
            Console.WriteLine(ex.StackTrace);
            return false;
        }
    }

I am pretty sure that the same patter will work for update and insert and would like to have a generic method on the GenericDAO that will retrieve me any entity (i.e. Customer, Invoice, WorkOrder, etc…) based on the entities Id. Thanks in advance for the replies.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T02:47:24+00:00Added an answer on May 28, 2026 at 2:47 am

    I think you are looking for Repository Pattern, the following is a simple implementation of it:

    First you need to create an interface IRepository like this:

    public interface IRepository<T> where T : class
    {
        void Add(T entity);
        void Delete(T entity);
        void Update(T entity);
        IEnumerable<T> All();
        ...
    }
    

    Then:

    public class Repository<T> : IRepository<T>
        where T : class, IEntity
    {
        DataContext _db;
        public Repository()
        {
            _db = new DataContext("Database string connection");
            _db.DeferredLoadingEnabled = false;
        }
        public void Add(T entity)
        {
            if (!Exists(entity))
                GetTable.InsertOnSubmit(entity);
            else
                Update(entity);
            SaveAll();
        }
        public void Delete(T entity)
        {
            GetTable.DeleteOnSubmit(entity);
            SaveAll();
        }
        public void Update(T entity)
        {
            GetTable.Attach(entity, true);
            SaveAll();
        }
        System.Data.Linq.Table<T> GetTable
        {
            get { return _db.GetTable<T>(); }
        }
        public IEnumerable<T> All()
        {
            return GetTable;
        }
    }
    

    Then :

    public class CustomerRepository : Repository<Customer>
    {
        public ProductRepository()
            : base()
        {
        }
    }
    

    Then you can have something like:

    Customer newCustomer = new Customer { FistName = "Foo", LastName = "Boo" };
    _customerRepository.Add(newCustomer);
    

    Where Customer is an entity mapped to your database which is defined in the .dbml. This is just a start, see the following for more details:

    • Implementing Repository Pattern in LINQ-to-SQL.
    • LINQ to SQL and Repository Pattern.
    • Implementing IRepository Pattern in LINQ to SQL.
    • Implementation example of Repository Pattern in LINQ to SQL.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm attempting to create a transaction to wrap around several LINQ to SQL SubmitChanges()
In my application I instantiate a new Linq-to-SQL object and pass it (with some
I'm attempting to refactor a cumbersome LINQ-to-SQL data layer with an entity framework one.
I'm fairly new to LINQ to SQL, so I could be missing something basic
I am new to LINQ and am trying to create some data points from
I insert a new object into LINQ-to-SQL DataContext without calling SubmitChanges() yet: MyDataContext db
I am new to LINQ to SQL, but have done a lot of database
im really new to linq-to-SQL so this may sound like a really dumb question,
I am quite new with Linq to SQL and MVC but I follow the
I'm familiar with .NET and with SQL. Now I'm looking at the new LINQ

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.