Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Yes, those will all work. However, the semantics might be a little different. When you have a UI and controls bound to a business object, you usually use Add(), Edit(), and DeleteCurrentRow(). However, if you're just modifying records programmatically, you can use NewRow(), [nothing] (since you can just change fields without calling Edit()) and DeleteByPrimaryKey as they are slightly faster since they circumvent the UI.
|