User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:53:41Z http://stackoverflow.com/feeds/user/11355 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions 7 Business Objects, Validation And Exceptions tkd 2008-09-17T23:04:21Z 2009-08-27T00:51:16Z <p>I’ve been reading a few questions and answers regarding exceptions and their use. Seems to be a strong opinion that exceptions should be raised only for exception, unhandled cases. So that lead me to wondering how validation works with business objects.</p> <p>Lets say I have a business object with getters/setters for the properties on the object. Let’s say I need to validate that the value is between 10 and 20. This is a business rule so it belongs in my business object. So that seems to imply to me that the validation code goes in my setter. Now I have my UI databound to the properties of the data object. The user enters 5, so the rule needs to fail and the user is not allowed to move out of the textbox. . The UI is databound to the property so the setter is going to be called, rule checked and failed. If I raised an exception from my business object to say the rule failed, the UI would pick that up. But that seems to go against the preferred usage for exceptions. Given that it’s a setter, you aren’t really going to have a ‘result’ for the setter. If I set another flag on the object then that would imply the UI has to check that flag after each UI interaction.</p> <p>So how should the validation work?</p> <p>Edit: I've probably used an over-simplified example here. Something like the range check above could be handled easily by the UI but what if the valdation was more complicated, e.g. the business object calculates a number based on the input and if that calculated number is out of range it should be recjected. This is more complicated logic that should not be in th UI. </p> <p>There is also the consideration of further data entered based on a field already entered. e.g.I have to enter an item on the order to get certain informaion like stock on hand, current cost, etc. The user may require this information to make decisions on further entry (liek how many units to order) or it may be required in order for further validation to be done. Should a user be able to enter other fields if the item isn't valid? What would be the point?</p> http://stackoverflow.com/questions/155724/qt-wxwidgets-third-party-components 1 qt/wxwidgets third party components? tkd 2008-10-01T00:34:37Z 2008-12-22T23:09:28Z <p>I'm used to working in a Delphi and C# environment which seem to have a rich set of third party components available. I'm currently wanting to do cross-platform programming in C++ using either qt or wxwidgets. Is there a large market for third party components? I was looking at sourceforge and that doesn't seem to show much that is useful (how the hell do you find out what components or features are in a project without downloading the source?). I'm thinking carousel/coverflow components, rich datagrids (like the sort DevExpress provide). Or is this, write your own territory?</p> http://stackoverflow.com/questions/165209/anyone-use-xui-javafx 1 Anyone use xui? JavaFX? tkd 2008-10-03T00:23:48Z 2008-10-21T02:34:25Z <p>Warning: Java newbie. </p> <p>Been looking at <a href="http://www.xoetrope.com/xui" rel="nofollow">XUI</a> for Java. Its looks quite interesting. Sort of liek a WPF way of designing interfaces. But googling around I don't see much other than articles saying it had been released. So is it used much or a bit niche?</p> <p>Are there other similar frameworks for Java? Was looking at JavaFX but seems to be a general feeling that it has been slow development wise. Are there other frameworks that work in simialr ways? I get the impression Swing/SWT seem to more like WinForms. I'm looking to do something a bit more WPF like. As I said, Java newbie, so I might have this all confused. Seem to be so many UI frameworks its a bit overwhelming working out what to use for a new project.</p> http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions/89894#89894 0 Answer by tkd for Business Objects, Validation And Exceptions tkd 2008-09-18T04:02:10Z 2008-09-18T04:02:10Z <p>@<a href="#89713" rel="nofollow">Jeromy</a>: I had briefly thought of that. Actually that might work ok. One problem if I use an exception and stop the user from moving out of a textbox, they can't click the form Cancel button to simply close the window and reject the new record. </p> http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions/88604#88604 0 Answer by tkd for Business Objects, Validation And Exceptions tkd 2008-09-17T23:15:17Z 2008-09-17T23:15:17Z <p>"You could add a separate function that does the validation for the setter. In your example this function would return true if the value is in range and false if it is not."</p> <p>I'd be happy enough to have a common property that held an error message text for example, which could be displayed on the UI. But how does that stop the user from actually moving out of the databound textbox? </p> http://stackoverflow.com/questions/80182/how-to-track-changes-to-business-objects 3 How to track changes to business objects? tkd 2008-09-17T05:05:42Z 2008-09-17T05:41:37Z <p>I get the concept of creating a business object or entity to represent something like a Person. I can then serialize the Person using a DTO and send it down to the client. If the client changes the object, it can have an IsDirty flag on there so when it gets sent back to the server I know to update it.</p> <p>But what if I have an Order object? This has the main header informaton, customer, supplier, required date, etc. Then it has OrderItems which is a List&lt; OrderItem>, being the items to be ordered. I want to be able to use this business object on my UI. So I have some textboxes hooked up to the location, supplier, required date, etc and a grid hooked up to OrderItems. Since OrderItems is a List I can easily add and delete records to it. But how do I track this, especially the deleted items. I don't want the deleted items to be visible in my grid and I shouldn't be able to iterate over them if I used foreach, because they have been deleted. But I still need to track the fact there was a deletion. How do I track the changes. I think I need to use a unit of work? But then the code seems to become quite complex. So then I wonder why not simply use DataTables and get the change tracking for free? But then I read how business objects are the way to go.</p> <p>I’ve found various examples on simple Person examples, bnut not header-detail examples like Orders.</p> <p>BTW using C# 3.5 for this.</p> http://stackoverflow.com/questions/70123/re-using-soft-deleted-records 2 Re-using soft deleted records tkd 2008-09-16T07:40:18Z 2008-09-16T08:02:51Z <p>If I have a table structure that is: </p> <p>code+description+isdeleted</p> <p>where code is the primary key.</p> <p>The user creates a record, then later on deletes it. Because I am using soft deletes the isdeleted will be set to true. Then in my queries I would be doing a select with the where clause: </p> <p>and not isdeleted</p> <p>Now if a user goes to create a new record they may see that code 'ABC' doesn't exist so they tried to recreate it. The select statement won't find it because of the where clause. But there will be a primary key index error.</p> <p>Should the user be allowed to re-use the record? I would think not since the idea of the soft delete is to keep the record for queries on older data s that joins to the 'deleted' record still work. If the user was allowed to re-use the code then they could change the description which might change the view of the historical data. But is it too harsh to stop them from using that code at all?</p> <p>Or should I be using a completely hidden primary key and then the 'code' field can be re-used?</p>