Is it possible to retrieve data from multiple tables in a LINQ-to-sql database to form an invoice using a crystal report
Note that i am using C# visual studio 2010 and LINQ to sql Database.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Crystal Reports can work with either a data object (such as a dataset or datatable) or an actual database, else well as with XML, so yes it can.
Note there’s no such thing as a LINQ-to-sql database, LINQ provides a middle man between you and the database. You probably mean you use LINQ to talk to your database and want to pass the results on to Crystal.
You can do this by converting the results to either a list or a dataset.