The workaround for getting migrations before the RIA services correctly supports EF4.3 can also be to create a project exclusively for migration, similar to the spirit of database projects in Visual Studio Ultimate.
The model should be included by such a project through "add as a link", and you will need to make sure that it can be compiled in both projects. For example, you may need to define some dummy attribute that is defined in RIA-Services ("Include" will be one).
This is not ideal, but it may be the best option in some cases.
source share