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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T02:49:34+00:00 2026-05-17T02:49:34+00:00

I have a window that shows customer infomation. when the window loads, I call

  • 0

I have a window that shows customer infomation.
when the window loads, I call LoadCustomer() method from the constructor which loads the customer information from the database asynchorously, which sets the CurrentCustomer property.
and then the UI is updated because it is bound to the CurrentCustomer.

private void LoadCustomer(Guid customerID)
{           
   var customerContext = new CustomerContext();

   var customerQuery = customerContext.GetCustomersQuery()
                                         .Where(e => e.CustomerID == customerID);

   customerContext.Load(customerQuery, 
      loadOperation =>
      {
         CurrentCustomer = loadOperation.Entities.SingleOrDefault();
      }, null);
}

The senior programmer has told me that it’s better to put this logic inside CurrentCustomer’s get accessor, because then

  • the calls to the database will use lazy loading, and
  • the refactoring would be easier.

Is it good practice to put async database calls inside property’s get accessor?

  • 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-17T02:49:35+00:00Added an answer on May 17, 2026 at 2:49 am

    Generally, it’s not.

    Usually if getting something would involves doing something else expensive as well, you should use a full getter method just for this purpose:

    public object GetSomething() { }
    
    // accessing code
    var value = obj.GetSomething();
    

    This signifies that getting that something isn’t free… Compare to:

    var value = obj.Something;
    

    This looks more like a normal value assignment hiding the dangerous async call going on behind the scene which, IMO is a bad idea.

    But as with everything else… it depends on other parts in the whole architecture as well.

    If the whole purpose of the object is to abstract away lots of asynchronous calls using property (such as the case with Linq2Sql or Entity Framework entities) then that’s fine because you must be aware that you’re dealing with calls that are not (or close to) free from the context of the code.

    …

    It depends on the context of the code. If whenever you are accessing this property, you are sure you’ll be reminded of the expensive call, then I think it is fine. But if that isn’t the case, then you should make it more explicit by turning it into a full-blown method instead of a property.

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

Sidebar

Related Questions

I have a wpf application with a simple window that shows a text in
I have a parent window for entry transaction that havs customer ID field input.
I have a window that I sometimes open using Show() and sometimes using ShowDialog()
I have a window that uses a viewmodel. This screen contains 2 listviews on
I have a window that contains one QTMovieView. How do I make it so
I have a window that is databound to a ViewModel. The ViewModel has many
I have a window that contains several rather complex views. Right now, I'm using
So I'm trying to have a window that I can drag around by the
I'm running into a problem where, I have a Window that contains a child
I have a modal window that uploads files to server. Works great. Upon completion

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.