c# - "dataset does not support system.nullable" -


i creating crystal report in wpf , exception genrate "dataset not support system.nullable"

private void btngenratereport_click(object sender, routedeventargs e) {     reportdocument report = new reportdocument();     report.load("../../crystalreport1.rpt");     var q = (from c in db.tableclients              select new { c.clientid, c.name, c.city, c.phone, c.email }).toarray();      report.setdatasource(q);      crystalreportsviewer1.viewercore.reportsource = report; } 


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

android - Keyboard hides my half of edit-text and button below it even in scroll view -