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

  • Home
  • SEARCH
  • 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 131339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:05:23+00:00 2026-05-11T06:05:23+00:00

If you have, for example, a database table called Person (ID,Name etc) what kind

  • 0

If you have, for example, a database table called Person (ID,Name etc) what kind of object should the data access tier return to the business tier? I’m thinking something like this:

//data access tier public class DataAccess{     public interface IPerson{       int ID{ get; set; }       string Name{ get; set; }    }     internal class Person : IPerson{       private int id;       private string name;        public int ID{ get{return id; } set{ id=value; } }       public int Name{ get{retutn name; } set{ name=value; }    }     public static IPerson GetPerson(int personId)    {       //get person record from db, populate Person object       return person;      } }  //business tier public class Person : IPerson{    private int id;    private string name;     public int ID{ get{return id;} set{id=value;} }    public string Name{ get{return name;} set{name=value;} }     public void Populate(int personId){       IPerson temp = DataAccess.GetPerson(personId);       this.ID = temp.ID;       this.Name = temp.Name;    } } 

But this all seems a little cumbersome? Is there a more elegant solution to this problem? Should I return a DataRow from the data access layer to the business layer instead?

  • 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. 2026-05-11T06:05:23+00:00Added an answer on May 11, 2026 at 6:05 am

    You don’t need to repeat the class definition in your data access layer (DAL).

    You can create your business entities as ‘dumb’ containers in a separate assembly, e.g. your Person class can just be:-

    public class Person {     int ID { get; set: }     string Name { get; set: } } 

    Then, you can give your DAL a reference to the business entities layer. Your controller objects, whether they are in a separate business logic layer, or within your UI layer, can then just call the DAL, which can create a business entity, populate it from the database and return it to your controller.

    This article by Imar Spaanjaars has a nice explanation of this pattern.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.