IWidget widget = EntityFactory.Create<IWidget>();widget.Property = "Something";widget.Save();// new widget is saved at this point //get a reference to parent entityIAccount account = this.BindingSource.Current as IAccount; //this will cause a grid bound to Account.Widgets to refreshaccount.Widgets.Add(widget);