/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromOmorderdroprvlines(ref DataRow row, Omorderdroprvlines 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("id", entity.id); row.SetField("req_qty", entity.reqQty); row.SetField("is_assigned_picks", entity.isAssignedPicks); row.SetField("rowid", entity.rowid.ToByteArray()); row.SetField("userfield", entity.userfield); }
public static Omorderdroprvlines BuildOmorderdroprvlinesFromRow(DataRow row) { Omorderdroprvlines entity = new Omorderdroprvlines(); 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.id = row.IsNull("id") ? 0 : row.Field <int>("id"); entity.reqQty = row.IsNull("req_qty") ? decimal.Zero : row.Field <decimal>("req_qty"); entity.isAssignedPicks = row.Field <bool>("is_assigned_picks"); entity.rowid = row.Field <byte[]>("rowid").ToStringEncoded(); entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield"); return(entity); }