Entity Framework 4.0; Is there a limit on the number of objects(tables,views,sprocs) it will handle?
I have a database with many tables, views and sprocs. If I try to create a dat开发者_开发百科a model that includes everything, it errors out on the creation of the class file. If I try to create a model with just the views, it works fine. Is there a limit or is there something in a config file somewhere that needs to be tweaked?
Have you tried a model with just the tables and/or procs? I'm not aware of a size limit but could it be possible the creation of the model is taking so long your SQL connection is timing out? Are you getting a specific error message?
精彩评论