New Posts New Posts RSS Feed: Deleting Entities
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

Deleting Entities

 Post Reply Post Reply
Author
amourrashid View Drop Down
Newbie
Newbie
Avatar

Joined: 25-Nov-2009
Location: Tanzania
Posts: 8
Post Options Post Options   Quote amourrashid Quote  Post ReplyReply Direct Link To This Post Topic: Deleting Entities
    Posted: 26-Nov-2009 at 10:23pm
Thank you very much;
  I tried that before and it actually it worked but I was not sure if that is the way it is supposed to be done.
And I have tested. It is OK.
Thanks again.
Back to Top
enterprisetoday View Drop Down
Newbie
Newbie


Joined: 03-Mar-2009
Posts: 12
Post Options Post Options   Quote enterprisetoday Quote  Post ReplyReply Direct Link To This Post Posted: 26-Nov-2009 at 3:20pm
Please consider this.. pseudocode of sorts...


if (e.KeyCode == Keys.Delete)

Entity myentity = gridView1.GetFocusedRow() as Entity;
if myentity != null && !EntityAspect.isnullentity

DialogResult result = xtramessagebox.show(etc etc etc)

if result == dialogresult.yes
myentity.EntityAspect.Delete();
bindingsource.RemoveCurrent();


where bindingsource is a private System.Windows.Forms.BindingSource

            
Back to Top
amourrashid View Drop Down
Newbie
Newbie
Avatar

Joined: 25-Nov-2009
Location: Tanzania
Posts: 8
Post Options Post Options   Quote amourrashid Quote  Post ReplyReply Direct Link To This Post Posted: 26-Nov-2009 at 6:12am
Hello Dear;
    I am starting my development with DevForce. I am getting well along with it but I have come accross ascenario I would like guidance from any person having experience with DevForce.
 
I have a form with controls bould to a BindingSource which i then bound BindableList of entities. I can Adding and Editing without problems. However when I try to Delete Items with my Binding Navigator they still appear on the form.
 
I use something like this

(contractBindingSource.Current as Contract).Delete(); for a Contract which contains Facilities ( Entities in my System) and to delete a facility I call something like this (Using XtraGrid)

private void OnKeyDown(object sender, KeyEventArgs e)

{

if (e.KeyCode == Keys.Delete)

{

(facilitiesBindingSource.Current as ContractFacility).Delete();

}

}

Please can anybody help me with this.
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down