I\'m trying to insert order details into my DB, and it keeps saying:
Cannot insert explicit value for identity column in table \'Orders\' when IDENTIT
You do not want the UserID to be an Identity, and I also do not think you want the UserID to be the primary key either. More than likely, you want the OrderID to be the primary key, or at best shared primary key with the userid and orderid.