On 2/2/2011 6:46 AM, nil5286 wrote:
> What I'm hoping is to be able to use the designer to combine entities
> from different underlying sources (SQL, XML etc.) and address them
> together with LINQ to Entities. Is this possible?
>
The best you could hope for is a framework you put together that is
Entity Framework like. A business model framework that has entities that
address the underlying datasource. This is being done at a company I
work at where the entities addresses the datasource on SQL Server and it
addresses a DB2 database that's on an AS400 mainframe. None of it's
using the ADO.NET EF, but works like an ADO.NET EF.
It works with the Entity StateManger, IEntityKey, EntityKey,
ReportPopertyChanging, and ReportPropetyChanged and EntityCollection.
You don't need the ADO.Net EF to work with entities that you derive from
a business model framework. You should be able to create an entity that
addresses XML too.