Dear Otis,
I am getting an Error when trying to update an Entity. My code section is like this:
// [C#]
BusinessesEntity QuickUpdate = new BusinessesEntity();
QuickUpdate.FetchUsingPK(7602);
Response.Write( QuickUpdate.BusinessName ) ;
QuickUpdate.BusinessName = " Something " ;
QuickUpdate.Save() ;
I want to get a record ( entity ) into the variable QuickUPdate and perfom
a quick update on a field ( ex. BusinessName ) and I am using as the code given
in the .Chm file right here:
// [C#] -- Note : Code taken from LLBL Gen Pro Help file exemples.
CustomerEntity customer = new CustomerEntity("CHOPS");
customer.Phone = "(605)555-4321";
customer.Save();
The page does not display anything when I do a .Write for .BusinessName.
And the .Save() method is generating an error.
Please advice and thanks in advance.