コード例 #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromSerialhistorycriteria(ref DataRow row, Serialhistorycriteria 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("line", entity.line);
     row.SetField("line_sequence", entity.lineSequence);
     row.SetField("abs_num", entity.absNum);
     row.SetField("rma", entity.rma);
     row.SetField("serialhistorycriteriauserfield", entity.serialhistorycriteriauserfield);
     row.SetField("userfield", entity.userfield);
 }
コード例 #2
0
        public static Serialhistorycriteria BuildSerialhistorycriteriaFromRow(DataRow row)
        {
            Serialhistorycriteria entity = new Serialhistorycriteria();

            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.line         = row.IsNull("line") ? 0 : row.Field <int>("line");
            entity.lineSequence = row.IsNull("line_sequence") ? 0 : row.Field <int>("line_sequence");
            entity.absNum       = row.IsNull("abs_num") ? string.Empty : row.Field <string>("abs_num");
            entity.rma          = row.IsNull("rma") ? string.Empty : row.Field <string>("rma");
            entity.serialhistorycriteriauserfield = row.IsNull("serialhistorycriteriauserfield") ? string.Empty : row.Field <string>("serialhistorycriteriauserfield");
            entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }