my tables ...
create table sale
(
idsale int primary key identity,
idclient int,
user1 varchar(50),
fecha datetime
)
create table listofsale
(
idsale int,
idproduct int,
amount int,
priceunit float,
subtotal
)
when the sale is finished i am going to insert all i refer i am going to insert the information of
table sale
and listofsale
then i do the insert, but how do i get the same idsale for the list?
another idea i had is my idsale was varchar (10)
and i do a random of letters and number in c# and i am going to have it
in a textbox, so i can save it, in the same time,
or, what another form can i do it? what is the best way for do it?
-- added { I always have had a button for "insert" the sale and get the id, and after of do it you can add the list.. but i know it is not the right form.. sometime you have sales without list (if you dont added none product , and close the application and open it again) }