Business/Domain Object in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:02:04Z http://stackoverflow.com/feeds/question/777841 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/777841/business-domain-object-in-asp-net 0 Business/Domain Object in ASP.NET Brian 2009-04-22T15:31:02Z 2009-05-14T21:00:10Z <p>Just trying to gather thoughts on what works/doesn't work for manipulating Business/Domain objects through an ASP.NET (2.0+) UI/Presentation layer. Specifically in classic ASP.NET LOB application situations where the ASP.NET code talks directly to the business layer. I come across this type of design quite often and wondering what is the ideal solution (i.e. implementing a specific pattern) and what is the best pragmatic solution that won't require a complete rewrite where no "pattern" is implemented.</p> <p>Here is a sample scenario.</p> <p>A single ASP.NET page that is the "Edit/New" page for a particular Business/Domain object, let's use "Person" as an example. We want to edit Name and Address information from within this page. As the user is making edits or entering data, there are some situations where the form should postback to refresh itself. For example, when editing their Address, they select a "Country". After which a State/Region dropdown becomes enabled and refreshed with relevant information for the selected country. This is essentially business logic (restricting available selections based on some dependent field) and this logic is handled by the business layer (remember this is just one example, there are lots of business situations where the logic is more complex during the post back - for example insurance industry when selecting certain things dictates what other data is needed/required).</p> <p>Ideally this logic is stored only in the Business/Domain object (i.e. not having the logic duplicated in the ASP.NET code). To accomplish this, I believe the Business/Domain object would need to be reinitialized and have it's state set based on current UI values on each postback.</p> <p>For example:</p> <pre><code>private Person person = null; protected void Page_Load() { person = PersonRepository.Load(Request.QueryString["id"]); if (Page.IsPostBack) SetPersonStateFromUI(person); else SetUIStateFromPerson(person); } protected void CountryDropDownList_OnChange() { this.StateRegionDropDownList.Enabled = true; this.StateRegionDropDownList.Items.Clear(); this.StateRegionDropDownList.DataSource = person.AvailableStateRegions; this.StateRegionDropDownList.DataBind(); } </code></pre> <p>Other options I have seen are storing the Business object in SessionState rather than loading it from the repository (aka database) each time the page loads back up.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/777841/business-domain-object-in-asp-net/777878#777878 0 Answer by Lazarus for Business/Domain Object in ASP.NET Lazarus 2009-04-22T15:37:55Z 2009-04-22T15:37:55Z <p>I'd put your example in my 'UI Enhancement' bucket rather than BL, verifying that the entries are correct is BL but easing data entry is UI in my opinion.</p> http://stackoverflow.com/questions/777841/business-domain-object-in-asp-net/777879#777879 0 Answer by Josh for Business/Domain Object in ASP.NET Josh 2009-04-22T15:38:12Z 2009-04-22T15:38:12Z <p>For very simple things I wouldn't bother with a regular post back but would use an ajax approach. For example if I need to get a list of Cities, I might have a Page Method (Or web service) that given a state gives me a list of cities. </p> <p>If your options depends on a wide variety of parameters, what your doing would work well. As for storing things in Session there are benefits. Are your entities visible to multiple at the same time? If so what happens when User A and User B both edit the same. Also if your loading each time are you savign to the database each time? What happens if I am editing my name, and then select country, but now my browser crashes. Did you update the name in the DB?</p> http://stackoverflow.com/questions/777841/business-domain-object-in-asp-net/865743#865743 0 Answer by ifatree for Business/Domain Object in ASP.NET ifatree 2009-05-14T21:00:10Z 2009-05-14T21:00:10Z <p>This is the line I disagree with slightly:</p> <pre><code>this.StateRegionDropDownList.DataSource = person.AvailableStateRegions; </code></pre> <p>Person is a business/domain object, but it's not the object that should be handling state/region mapping (for example), even if that's where the information to make the decision lives. </p> <p>In more complicated examples where multiple variables are needed to make a decision, what you want to do in general is start from the domain object you're trying to end up with, and call a function on that object that can be given all the required information to make a business decision.</p> <p>So maybe (using a static function on the State class):</p> <pre><code>this.StateRegionDropDownList.DataSource = State.GetAvailableStateRegions(person, ipAddress); </code></pre> <p>As a consequence of separating out UI helper concerns from the Person domain object, this style of programming tends to be much "more testable".</p>