I have an Entity Framework model that was generated by the Visual Studio 2008 wizard based on a Sql Server 2008 database.
The model has a view that logically is joined in a many-to-many relationship with another table through a join table (enforced in the database by an insert/update trigger). Both tables and the view are part of the model, but because you cannot have a foreign key constraint on a view, it does not have the relationship between the view and the join table.
Is it possible to create a relationship in the Entity Framework model for this link between the join table and the view?
Thank you for any help.