2

Can someone please outline the process of building a SQL Server Reporting Services 2008 report based on a ADO.Net Entity Framework Entity Data Model? If you know of any example, please point me to it. Thank you!

Gus Cavalcanti
  • 10,527
  • 23
  • 71
  • 104

1 Answers1

0

There is no reason to go through a web service. Just map your objects to your database, when creating a report choose "Object Data Source".

The only trick with Object Data Source, is if you need to access members of a related object you do it like this (for example if you want to print a first name of a person's parent.)

=Fields!Parent.Value.FirstName
Vitalik
  • 2,724
  • 4
  • 32
  • 43