.DBML file and LINQ to SQL
Posted
by Rishabh Ohri
on Stack Overflow
See other posts from Stack Overflow
or by Rishabh Ohri
Published on 2010-04-21T08:06:37Z
Indexed on
2010/04/21
8:13 UTC
Read the original article
Hit count: 537
In my DBML file I have mapped some tables and stored procedures, and the stored procedures return type is ISingleResult . T is some mapped table. But I want to take the data into my own created entities rather than LINQ to SQL created entites. The entites created by me are also the same as the mapped table entities and their use lies when we send data across the a web service. So , how can I proceed by creating a wrapper around the DBML file so that I always get data in my own created entites.
© Stack Overflow or respective owner