Exemple #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromArstcreateupdate(ref DataRow row, Arstcreateupdate entity)
 {
     row.SetField("custno", entity.custno);
     row.SetField("shiptogrp", entity.shiptogrp);
     row.SetField("grpname", entity.grpname);
     row.SetField("createfl", entity.createfl);
     row.SetField("arstrowid", entity.arstrowid.ToByteArray());
     row.SetField("arstrowpointer", entity.arstrowpointer);
     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("userfield", entity.userfield);
 }
Exemple #2
0
        public static Arstcreateupdate BuildArstcreateupdateFromRow(DataRow row)
        {
            Arstcreateupdate entity = new Arstcreateupdate();

            entity.custno         = row.IsNull("custno") ? decimal.Zero : row.Field <decimal>("custno");
            entity.shiptogrp      = row.IsNull("shiptogrp") ? string.Empty : row.Field <string>("shiptogrp");
            entity.grpname        = row.IsNull("grpname") ? string.Empty : row.Field <string>("grpname");
            entity.createfl       = row.Field <bool>("createfl");
            entity.arstrowid      = row.Field <byte[]>("arstrowid").ToStringEncoded();
            entity.arstrowpointer = row.IsNull("arstrowpointer") ? string.Empty : row.Field <string>("arstrowpointer");
            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.userfield      = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }