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 6716287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:42:54+00:00 2026-05-26T08:42:54+00:00

I have a customer table in the db that stores the name, address etc,

  • 0

I have a customer table in the db that stores the name, address etc, along with some photo, logo and other images.

I am using entity framework and I would like to know how to tackle the situation where I only want to bring back basic data about the customer in certain situations vs the complete data including images.

Should I have two entities, CustomerBasic and CustomerComplete

OR

have one Customer entity and fill it with two separate methods, FillBasic, FillComplete.

Any best practices? i’m new to EF.

  • 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-26T08:42:55+00:00Added an answer on May 26, 2026 at 8:42 am

    It really depends on your repository structure if any – with EF itself you can just use a projection with the properties you do want to a business object instance that represents a “basic customer”, i.e.

    var customerBasicList = context.Customers
                                   .Where(...)
                                   .Select( c => new CustomerBasic() 
                                   {
                                     FirstName = c.FirstName,
                                     LastName = c.LastName,
                                   }).ToList();
    

    Performance becomes more important when you have a collection property (i.e. images in your example) in your entity. In your case you can take advantage of lazy loading to only materialize those properties when and if needed.

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

Sidebar

Related Questions

I have a table customer that stores a customer_id, email and reference. There is
I have a table that stores customer items. The table needs to reflect the
I have a MySQL table that defines values for a specific customer type. |
The table's schema is pretty simple. I have a child table that stores a
I have an ecommerce MySQL database that stores order information in the table 'orders'
i have a table with a column named CustomerName which stores a customer's full
Lets say I have one table called REVIEWS This table has Reviews that customers
Let's say I have a Customer table which has a PrimaryContactId field and a
For example, in my WCF, if I have a Customer table and an Order
I have a performance problem on a query. First table is a Customer table

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.