I have a model class with primary key ID.
public class Order
{
public int ID { get;set }
public string Product_Name { get;set }
public string Product_Brand { get;set }
}
I want to add the product items in a database where one product can be added more than one time..
Now how can i insert same product ignoring "duplicate key insertion problem"?? Is there any way to do this??
Help please...
Loading
Manoj BhoirPosted Jul 2, 2015, 8:20 AM
{
public int ID { get;set } // Your Order ID
public string Product_Name { get;set }
public string Product_Brand { get;set }
}
Afzaal Ahmad ZeeshanPosted Jul 2, 2015, 8:06 AM