I have a table called PRODUCT, in which the Price of a Product is stored.
Because I know that the price of a product can change at any time, I have a table called ORDER, which holds the Quantity of the product that is being ordered by someone, and the TodaysPrice, which is the price that should be extracted from the column Price in the moment where the transaction is being done.
The problem is, I don't know how to extract a property's value and assign this value to another property in LightSwitch.
So far, what I've managed to think is to include this in the Order_Created():
this.Order.SelectedItem.Price = this.Order.SelectedItem.Product.Price;
But the code above doesn't work, I get this exception:
NullReferenceException was unhandled by user code
I'm not sure if the is correct, any help would be much appreciated. I want to know how can I do this in LightSwitch 2011 with Visual Studio 2010.
Thanks so much in advance!