RDLC - Adding a Data Source in VS2010

前端 未结 6 1951
借酒劲吻你
借酒劲吻你 2020-12-24 09:34

Greetings.

I have an RDLC file and am wanting to add a data source to it, although without any luck so far. The data source is a custom class written by myself (jus

6条回答
  •  遥遥无期
    2020-12-24 10:00

    I have seen this happen when your final select in a Stored Procedure pulls from a temp/memory table. You have to fake the designer out by adding a dummy select 0 AS mycol1int, '' AS mycol2string, etc. Once you have created the Dataset, you can then remove that dummy select. Another marvelous, fabulous feature in VS! They own the DB, they own the IDE, but...

提交回复
热议问题