Moving from WCF RIA RC to Release: best practices?
Posted
by Duncan Bayne
on Stack Overflow
See other posts from Stack Overflow
or by Duncan Bayne
Published on 2010-05-03T05:31:26Z
Indexed on
2010/05/03
5:38 UTC
Read the original article
Hit count: 256
c#
|wcf-ria-services
I have an existing WCF RIA project built on the Release Candidate; I'm now moving to the Release version & have discovered many changes. David Scruggs made the following comment on his (MSDN) blog:
"If you’ve written anything in SIlverlight 4 RIA Services, you’ll need to rewrite it. There has been a lot of refactoring and namespace moves."
Having made a brief attempt to compile the old solution with the new RIA framework I'm inclined to agree. My current plan is to:
- remove the Silverlight Business Application projects from the Solution
- rebuild the EF4 items from the database
- create a new Silverlight Business Application project
- re-add the files (XAML, CS) from the old Silverlight Business Application project
Does this sound like a reasonable approach? I think it's cleaner than trying to manually alter the existing project.
© Stack Overflow or respective owner