Home
Forums
New posts
Search forums
Articles
Latest reviews
Search resources
Members
Current visitors
Newsgroups
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Home
Forums
Newsgroups
Microsoft DotNet
Microsoft C# .NET
Generic Database handling class
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Arne Vajhøj, post: 14060371"] EF is for database access so it requires a database. :-) Some ORM's can work with SP's. I don't think EF can - at least I have never seen it. You should be aware that ORM's including EF is only useful for some types of usage - typical OLTP usage where you are object centric. That is a huge portion of .NET apps, so it is likely also a good choice for you. You can mix ORM and non-ORM, but then you really need to know what your are doing. Because a common feature in ORM's is caching of data in memory. If you bypass the ORM by calling SP's directly then you can end up having invalid data in memory, that the ORM still thinks is valid. Arne [/QUOTE]
Verification
Post reply
Home
Forums
Newsgroups
Microsoft DotNet
Microsoft C# .NET
Generic Database handling class
Top