コード例 #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromZonebincriteria(ref DataRow row, Zonebincriteria entity)
 {
     row.SetField("co_num", entity.coNum);
     row.SetField("wh_num", entity.whNum);
     row.SetField("wh_zone", entity.whZone);
     row.SetField("zonebinuserfield", entity.zonebinuserfield);
     row.SetField("userfield", entity.userfield);
 }
コード例 #2
0
        public static Zonebincriteria BuildZonebincriteriaFromRow(DataRow row)
        {
            Zonebincriteria entity = new Zonebincriteria();

            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.whZone           = row.IsNull("wh_zone") ? string.Empty : row.Field <string>("wh_zone");
            entity.zonebinuserfield = row.IsNull("zonebinuserfield") ? string.Empty : row.Field <string>("zonebinuserfield");
            entity.userfield        = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }