Ejemplo n.º 1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromWebmodrecord(ref DataRow row, Webmodrecord entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("functionname", entity.functionname);
     row.SetField("operator", entity.@operator);
     row.SetField("operinit", entity.operinit);
     row.SetField("profile", entity.profile);
     row.SetField("rowpointer", entity.rowpointer);
     row.SetField("screenname", entity.screenname);
     row.SetField("settingname", entity.settingname);
     row.SetField("settingvalue", entity.settingvalue);
     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("webmodRowID", entity.webmodRowID.ToByteArray());
     row.SetField("userfield", entity.userfield);
 }
Ejemplo n.º 2
0
        public static Webmodrecord BuildWebmodrecordFromRow(DataRow row)
        {
            Webmodrecord entity = new Webmodrecord();

            entity.cono         = row.IsNull("cono") ? 0 : row.Field <int>("cono");
            entity.functionname = row.IsNull("functionname") ? string.Empty : row.Field <string>("functionname");
            entity.@operator    = row.IsNull("operator") ? string.Empty : row.Field <string>("operator");
            entity.operinit     = row.IsNull("operinit") ? string.Empty : row.Field <string>("operinit");
            entity.profile      = row.IsNull("profile") ? string.Empty : row.Field <string>("profile");
            entity.rowpointer   = row.IsNull("rowpointer") ? string.Empty : row.Field <string>("rowpointer");
            entity.screenname   = row.IsNull("screenname") ? string.Empty : row.Field <string>("screenname");
            entity.settingname  = row.IsNull("settingname") ? string.Empty : row.Field <string>("settingname");
            entity.settingvalue = row.IsNull("settingvalue") ? string.Empty : row.Field <string>("settingvalue");
            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.webmodRowID  = row.Field <byte[]>("webmodRowID").ToStringEncoded();
            entity.userfield    = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }