Entity Framework 4.0 Is there a limit on the number of objects (tables, views, sprocs) that it will process?

I have a database with many tables, views and sprocs. If I try to create a data model that includes everything, this will lead to errors when creating the class file. If I try to create a model with only views, it works fine. Is there a limit or is there something in the configuration file somewhere that needs to be configured?

0
source share
1 answer

Have you tried the model using only tables and / or procs? I don’t know the size limits, but is it possible that creating the model takes so much time that your SQL connection is disconnected? Are you getting an error message?

0
source

Source: https://habr.com/ru/post/1538611/


All Articles