How do I handle null nested objects in RDLC report that is bound to custom assembly object datasource?

前端 未结 3 381
孤街浪徒
孤街浪徒 2021-01-26 22:57

I have an RDLC report that I am rendering directly to the Response Stream as PDF (rather than using the ReportViewer). In the code that renders the report, it\'s DataSource is

3条回答
  •  一生所求
    2021-01-26 23:06

    =iif(First(Fields!model.Value, "model") Is Nothing, "value is NULL", "value is not NULL")
    

提交回复
热议问题