我需要在付款表中插入一条记录。我找到了两种方法来做到这一点
- 添加对象
- 插入提交
两者有什么区别?什么时候用什么?
public void InsertEntity(DBML_Project.Payment payment)
{
//Insert the entity
MyDataContext.GetTable<DBML_Project.Payment>().InsertOnSubmit(payment);
}
public void InsertPayment(IPayment payment)
{
this.AddObject(payment.GetType().Name, payment);
}