2013-11-15 87 views
1

您好我有這樣的代碼在我的應用程序:在stimulsoft不正確顯示報告

 var query = from p in db.tb_years 
        where p.id_y == Convert.ToInt32(textBox1.Text) 
        select new 
        { 
         p.id_y, 
         p.name 
        }; 


     report.Load("reps\\Report.mrt"); 

     report.RegData("query",query); 

     report.Show(); 

但它顯示了整個表的內容,它不包括其中clause.I已經修改我的代碼以類似BusinessObjectsStore方法.Clear()& Dictionary.DataSources.Clear()但它沒有任何區別。誰能幫我 ?

回答

0

如果報表中有Business Objects,那麼您應該使用RegBusinessObject()方法