I just upgraded to version 3 yesterday. I had been using 2.6 for some time. I'm upgrading a project.
I'm using SQL 2000, 2005, and 2008 for various projects I've been working on / maintaining for the years. I am about to start an upgrade of a project that is using SQL 2000, however my workstation has 2008 on it, so that's what I'm developing with.
I am not really stressing or making use of most of the great features llbl has to offer. Just trying to have a nice reliable data access layer to store and fetch data.
In my database, I have some views. Simple views. I have in the past brought in these views as typed views without issues. These are readonly objects for me. However, in the new version, I get an error message when generating, something to the effect of:
The typed view 'viewname' is mapped onto the target 'viewname', which is a view. A typed view..... aren't supported as the Entity Framework can't deal with types without a PK.
So, how do I bring in the views so I can use them?
Thanks.