Question

what is problem in this code ?

service.BillViewService bvs = new service.BillViewService();
db.BillView bv = new db.BillView();
DataSet ds = new DataSet();
ds = bvs.GetPaged("InvNo=" + n, null, 0, 10000, out x).ToDataSet();

here

Was it helpful?

Solution

Try This

  bvl2 = bvs.GetPaged(" Date = '" + Today + "' AND UserId = " + SpecUserID + "", null, 0, 1000, out x).ToDataSet(false);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top