Beispiel #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromOmorderdroperrors(ref DataRow row, Omorderdroperrors entity)
 {
     row.SetField("co_num", entity.coNum);
     row.SetField("wh_num", entity.whNum);
     row.SetField("order", entity.order);
     row.SetField("order_suffix", entity.orderSuffix);
     row.SetField("assigned", entity.assigned);
     row.SetField("id", entity.id);
     row.SetField("error_message", entity.errorMessage);
     row.SetField("rowid", entity.rowid.ToByteArray());
     row.SetField("userfield", entity.userfield);
 }
Beispiel #2
0
        public static Omorderdroperrors BuildOmorderdroperrorsFromRow(DataRow row)
        {
            Omorderdroperrors entity = new Omorderdroperrors();

            entity.coNum        = row.IsNull("co_num") ? string.Empty : row.Field <string>("co_num");
            entity.whNum        = row.IsNull("wh_num") ? string.Empty : row.Field <string>("wh_num");
            entity.order        = row.IsNull("order") ? string.Empty : row.Field <string>("order");
            entity.orderSuffix  = row.IsNull("order_suffix") ? string.Empty : row.Field <string>("order_suffix");
            entity.assigned     = row.Field <bool>("assigned");
            entity.id           = row.IsNull("id") ? 0 : row.Field <int>("id");
            entity.errorMessage = row.IsNull("error_message") ? string.Empty : row.Field <string>("error_message");
            entity.rowid        = row.Field <byte[]>("rowid").ToStringEncoded();
            entity.userfield    = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }