Take a simple example:
I have a customer table and an account table both with customerID field. I want to formview that can update data in both tables.
FormView:
First Name (Customer)
Last Name (Customer)
Address (Customer)
AccountRate (Account)
How can I do this with Linq to SQL? Do I just use Bind statements like Bind("Account.AccountRate")? Or do I have to do some magic in ItemUpdating event or similar?