一种数据访问层方法,仅使用dapper更新填充的属性

时间:2014-07-28 08:39:32

标签: data-access-layer dapper

我有以下课程,我希望从我的业务层传递到我的DAL:

UpdatePickSlip (F55BR003 data)

类别:

public class F55BR003
{
    public int id { get; set; }
    public decimal pickslip { get; set; }
    public int status { get; set; }
    public DateTime lastupdated { get; set; }
    public DateTime inserted { get; set; }
    public string locationtext { get; set; }
    public string message { get; set; }
}

编写方法以便仅识别具有值的属性并使用dapper仅更新它们的最佳方法是什么?

0 个答案:

没有答案