0

Note:

I know there was disscussion about similar questions before, like in:

link text

but i have to know how to handle this scenario:

Problem:

I wrote program that use LINQ to SQL and it will be send to client. Tables that my program uses may be changed ( let's say only added new columns). Is there any way to not update, recompile and send my program to client each time those changes occurs?

Community
  • 1
  • 1
zgorawski
  • 2,597
  • 4
  • 30
  • 43

1 Answers1

0

I don't think it's possible, because linq to sql classes map your database into objects, and when you change database, model classes do not reflect real database.

mlusiak
  • 1,054
  • 14
  • 28