I am putting out feelers about EF v.4 and large models. I don't know if I'll have anything to disclose; worse, I'm not sure they've done anything on this front.
Kim has answered on the multiple-CSDL idea. It is not something we'll do any time soon.
I hasten to add that the EF development approach that introduced the multiple-CSDL suggestion is highly precarious. I personally would be uncomfortable with it; it is fragile and difficult to maintain.
I still lean toward several smaller EF models with clearly defined boundaries. Sure, your models may map to some of the same tables. Doing so could yield two distinct "Customer" CLR entity types, for example, each with the same class name and shape. This duplication shouldn't be a big hassle from the code gen perspective. The challenge is how to provide common custom business logic for "Customer" across the two models. In other words, when it comes to adding application-specific, business behavior to the Customer class ... and you want it to be the same for all Customer entities in each sub-domain, how do you manage that?
You can. It's not ideal but it's doable. For a start, keep each domain model in its own project. In our example, you create a single Customer partial class file with the extra common logic and put it in, say, the Model A project. The Model B project points to it with a shortcut (the same way a Silverlight project's "Customer" class points with a shortcut to the Customer class file in the Web project).
You then cross-compile the file into projects A and B yielding distinct CLR Customer types that are structurally and logically identical. Use compiler directives in the shared code file to give the Model A "Customer" a different namespace than Model B's namespace to keep the type definitions from colliding.
All of this assumes that you can define clear sub-domain boundaries. Modules using Model A don't need Model B entities and modules using Model B don't need Model A entities. You may need to interface across modules (as when you are talking about the same conceptual "Customer"); you do this with what is known as an "anti-corruption" layer. It can be as simple as coordinating events that convey the shared CustomerId value in the event payload.
I happen to think this is more than an expedient; it's good design.
Domain Driven Design architects would argue more rigorously that the Model A Customer and the Model B Customer are the same in-name-only; they really are distinct concepts and should not only be distinct types ... they should have distinct storage as well! DDD folks would put them in different tables in different databases!
This may strike you as a tad impractical <grin/>.
I think the separate domain and model approach with shared storage is a reasonable compromise. That's why I outlined the shared table / shared code appproach above.
I admit I've made this case before and met stiff resistance. AdamC knows exactly what I mean.
If you believe that, in your application, it is essential to retain complete flexibility: any entity can reach any other entity at any time in any application module ... if you believe there is no way to design sub-models ... then I doubt anything short of a large model solution will work for you. You will have to decide, then, if EF is right for you.
It may not be. You may need a different ORM technology. DevForce supports a POCO approach that is open to EF alternatives. You could write your application with nHibernate for example. You would still get the DevForce client experience which is no small benefit; n-tier, caching, offline, LINQ, validation, ... all of these are still yours.
Unfortunately, you will be taking on many of the tedious mapping duties that you expected EF (and DevForce) to cover; with a 1000 table database to map, you may not like the POCO route.
I don't know of any technology solution to this problem that is hiding in the wings ... not from Microsoft or anyone else.
This is not the happy report I want to give. It is an honest one.