Controlling BO Updates in a less than typical scenarios


Author
Message
Edhy Rijo
E
StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
geoffAtDatagaard (09/25/2008)
Is there a recommended best practise for these types of queries in SF?
I note that the BusinessLayer has an ExecuteScalar, so Im guessing that I should use that by adding GetServerNow to my ApBaseBO. 

Hi,

Yes you are correct, the ExecuteScalar is the path for these types of queries.

Edhy Rijo

geoffAtDatagaard
geoffAtDatagaard
StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)
Group: Forum Members
Posts: 3, Visits: 5
Thanks for that, much appreciated.

In most of our applications we also have a requirement to return a scalar value from the database, for example our current inhouse framework has a GetServerNow method which simply returns the current datetime from the database server. 
Is there a recommended best practise for these types of queries in SF?
I note that the BusinessLayer has an ExecuteScalar, so Im guessing that I should use that by adding GetServerNow to my ApBaseBO.


 

Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Like Edhy mentioned, that is one option, but you could really go several different ways with this.  When you setup your development environment with SF we always recommend created a base BO (you can see and example of this in the StrataFlix sample).  Anyway, all you really would need to do is change the row in question from a Modifed record state to an Added record state and the BO will do the rest.  So if this is something common, you could place this logic in your base BO so you wouldn't have to recode this.  But in short, it would look something like this on a modified record:

MyBo.CurrentRow.SetAdded()

That will change the row state from being in a edited state to being identified as a new record.  When updating the business layer will take this state into account.  There may be a few other things that I am not thinking of thqat you may have to tweak in regards to your PK (if you allow auto-incrementing PKs, etc.).  But it really would not be much more difficult than this.

Edhy Rijo
E
StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
geoffAtDatagaard (09/25/2008)
I want to allow the user to Add a New or Edit an existing Incident.

However, when the user saves an Edited Incident, I want to leave the original row untouched and add a new row, which has the new details.
I already have a PK structure that supports this.
What I would like an insight into is where to hook the logic I would use and how to turn the updated BO into a new BO instance so it gets inserted.

Basically what I understand from your message above is the that when you Edit a record, actually you want to simply create a new one with the information of the edited one (a copied record).  That is pretty easy to accomplish by manipulating the primary bo Editing State and using the CopyData methods of the BO. 

Of course such an action is not what I would consider a standard or common rule, so it would not be a straight forward path from the framework stand point, but it is doable as the framework is very flexible and allow you to go anywhere your business rules require.

Edhy Rijo

geoffAtDatagaard
geoffAtDatagaard
StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)
Group: Forum Members
Posts: 3, Visits: 5
BTW, I know I can do this using triggers in the back-end, this really is more of an exercise of exploration.
geoffAtDatagaard
geoffAtDatagaard
StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)StrataFrame Beginner (21 reputation)
Group: Forum Members
Posts: 3, Visits: 5
I am currently evaluating SF as a framework for our migration to .NET
I have played extensively with several other products over the past 6 months or so, and I was suprised when I did stumble onto SF that I hadn't come across it before.
At first glance, it seems to me it should at least be holding as prominent a position as other tools such as IB,ES...

Anyway, I want to evaluate SF's capacity to adapt to some less than typical scenario's and I'd appreciate a heads-up from anyone who's willing.

Lets suppose I have a BO called IncidentBO, and I have it hooked up to an SF Maintenance Form.
I want to allow the user to Add a New or Edit an exisiting Incident.

However, when the user saves an Edited Incident, I want to leave the original row untouched and add a new row, which has the new details.
I already have a PK structure that supports this.
What I would like an insight into is where to hook the logic I would use and how to turn the updated BO into a new BO instance so it gets inserted.

I think the answer to this will also give me an insight into some other questions I have.

Cheers

Geoff

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search