示例#1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromApemmupdatesingle(ref DataRow row, Apemmupdatesingle entity)
 {
     row.SetField("addr1", entity.addr1);
     row.SetField("addr2", entity.addr2);
     row.SetField("addr3", entity.addr3);
     row.SetField("amount", entity.amount);
     row.SetField("apinvno", entity.apinvno);
     row.SetField("city", entity.city);
     row.SetField("cono", entity.cono);
     row.SetField("jrnlno", entity.jrnlno);
     row.SetField("name", entity.name);
     row.SetField("operinit", entity.operinit);
     row.SetField("refer", entity.refer);
     row.SetField("setno", entity.setno);
     row.SetField("state", entity.state);
     row.SetField("transdt", entity.transdt);
     row.SetField("transproc", entity.transproc);
     row.SetField("transtm", entity.transtm);
     row.SetField("user1", entity.user1);
     row.SetField("user2", entity.user2);
     row.SetField("user3", entity.user3);
     row.SetField("user4", entity.user4);
     row.SetField("user5", entity.user5);
     row.SetField("user6", entity.user6);
     row.SetField("user7", entity.user7);
     row.SetField("user8", entity.user8);
     row.SetField("user9", entity.user9);
     row.SetField("vendno", entity.vendno);
     row.SetField("zipcd", entity.zipcd);
     row.SetField("apemmRowID", entity.apemmRowID.ToByteArray());
     row.SetField("apsvRowID", entity.apsvRowID.ToByteArray());
 }
示例#2
0
        public static Apemmupdatesingle BuildApemmupdatesingleFromRow(DataRow row)
        {
            Apemmupdatesingle entity = new Apemmupdatesingle();

            entity.addr1      = row.IsNull("addr1") ? string.Empty : row.Field <string>("addr1");
            entity.addr2      = row.IsNull("addr2") ? string.Empty : row.Field <string>("addr2");
            entity.addr3      = row.IsNull("addr3") ? string.Empty : row.Field <string>("addr3");
            entity.amount     = row.IsNull("amount") ? decimal.Zero : row.Field <decimal>("amount");
            entity.apinvno    = row.IsNull("apinvno") ? string.Empty : row.Field <string>("apinvno");
            entity.city       = row.IsNull("city") ? string.Empty : row.Field <string>("city");
            entity.cono       = row.IsNull("cono") ? 0 : row.Field <int>("cono");
            entity.jrnlno     = row.IsNull("jrnlno") ? 0 : row.Field <int>("jrnlno");
            entity.name       = row.IsNull("name") ? string.Empty : row.Field <string>("name");
            entity.operinit   = row.IsNull("operinit") ? string.Empty : row.Field <string>("operinit");
            entity.refer      = row.IsNull("refer") ? string.Empty : row.Field <string>("refer");
            entity.setno      = row.IsNull("setno") ? 0 : row.Field <int>("setno");
            entity.state      = row.IsNull("state") ? string.Empty : row.Field <string>("state");
            entity.transdt    = row.Field <DateTime?>("transdt");
            entity.transproc  = row.IsNull("transproc") ? string.Empty : row.Field <string>("transproc");
            entity.transtm    = row.IsNull("transtm") ? string.Empty : row.Field <string>("transtm");
            entity.user1      = row.IsNull("user1") ? string.Empty : row.Field <string>("user1");
            entity.user2      = row.IsNull("user2") ? string.Empty : row.Field <string>("user2");
            entity.user3      = row.IsNull("user3") ? string.Empty : row.Field <string>("user3");
            entity.user4      = row.IsNull("user4") ? string.Empty : row.Field <string>("user4");
            entity.user5      = row.IsNull("user5") ? string.Empty : row.Field <string>("user5");
            entity.user6      = row.Field <decimal?>("user6");
            entity.user7      = row.Field <decimal?>("user7");
            entity.user8      = row.Field <DateTime?>("user8");
            entity.user9      = row.Field <DateTime?>("user9");
            entity.vendno     = row.IsNull("vendno") ? decimal.Zero : row.Field <decimal>("vendno");
            entity.zipcd      = row.IsNull("zipcd") ? string.Empty : row.Field <string>("zipcd");
            entity.apemmRowID = row.Field <byte[]>("apemmRowID").ToStringEncoded();
            entity.apsvRowID  = row.Field <byte[]>("apsvRowID").ToStringEncoded();
            return(entity);
        }