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 small application that has a message only WTL window which does
I have a simple HTML (as HTA) application that shows strange behavior on Windows
I have a window that is set with NSBorderlessWindowMask, and also kCGDesktopWindowLevel. When a
WPF doesn't provide the ability to have a window that allows resize but doesn't
In Java, is there a way to have a window that is Always on
I have an application that uses window.open() to generate dynamic popups. Unfortunately, I've had
I have an app that needs to open a new window (in the same
I have a line that I draw in a window and I let the
I have an MFC sdi app that uses a splitter window to contain a
I have a few links that should all open in the same window or

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.