Awesome - that works great for the select, but for some reason the PerformWork is not firing. Basically I have a FormView on the web page with a bunch of fields and a button with an onClick event that fires the following code:
protected void Update_Click(object sender, EventArgs e)
{
fvEmployee.UpdateItem(true);
}
Then, I have a very simple PerformWork event defined:
protected void dsEmployee_PerformWork(object sender, SD.LLBLGen.Pro.ORMSupportClasses.PerformWorkEventArgs2 e)
{
EmployeeService.Employee ws = new EmployeeService.Employee();
ws.Update(e.Uow);
}
But, the code never executes the PerformWork event no matter what I try...
note> I am using the trial version, code that matter?
Thanks again, in advance!!