コード例 #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromPdspvendcontaddcriteria(ref DataRow row, Pdspvendcontaddcriteria entity)
 {
     row.SetField("clevelcd", entity.clevelcd);
     row.SetField("contractno", entity.contractno);
     row.SetField("prod", entity.prod);
     row.SetField("prodpricety", entity.prodpricety);
     row.SetField("vendno", entity.vendno);
     row.SetField("rebtype", entity.rebtype);
     row.SetField("rebsubty", entity.rebsubty);
     row.SetField("unit", entity.unit);
     row.SetField("whse", entity.whse);
     row.SetField("startdt", entity.startdt);
     row.SetField("nonstockokfl", entity.nonstockokfl);
     row.SetField("userfield", entity.userfield);
 }
コード例 #2
0
        public static Pdspvendcontaddcriteria BuildPdspvendcontaddcriteriaFromRow(DataRow row)
        {
            Pdspvendcontaddcriteria entity = new Pdspvendcontaddcriteria();

            entity.clevelcd     = row.IsNull("clevelcd") ? string.Empty : row.Field <string>("clevelcd");
            entity.contractno   = row.IsNull("contractno") ? string.Empty : row.Field <string>("contractno");
            entity.prod         = row.IsNull("prod") ? string.Empty : row.Field <string>("prod");
            entity.prodpricety  = row.IsNull("prodpricety") ? string.Empty : row.Field <string>("prodpricety");
            entity.vendno       = row.IsNull("vendno") ? decimal.Zero : row.Field <decimal>("vendno");
            entity.rebtype      = row.IsNull("rebtype") ? string.Empty : row.Field <string>("rebtype");
            entity.rebsubty     = row.IsNull("rebsubty") ? string.Empty : row.Field <string>("rebsubty");
            entity.unit         = row.IsNull("unit") ? string.Empty : row.Field <string>("unit");
            entity.whse         = row.IsNull("whse") ? string.Empty : row.Field <string>("whse");
            entity.startdt      = row.Field <DateTime?>("startdt");
            entity.nonstockokfl = row.Field <bool>("nonstockokfl");
            entity.userfield    = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }