#Entity_Framework
Explore tagged Tumblr posts
devsnews · 2 years ago
Link
This post will discuss the advantages of using JSON when data modeling, the benefits of storing JSON, and how to work with JSON data in your EF Core 7 applications.
0 notes
netardos-blog · 14 years ago
Text
Resources for asp.net mvc and entity framework
The bible http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx
Best practices... read and read again http://blogs.msdn.com/b/aspnetue/archive/2010/09/17/second_2d00_post.aspx
Unit testing EF code first with Include
http://blogs.clariusconsulting.net/kzu/how-to-design-a-unit-testable-domain-model-with-entity-framework-code-first/
http://romiller.com/2010/09/07/ef-ctp4-tips-tricks-testing-with-fake-dbcontext
http://stackoverflow.com/questions/6904139/fake-dbcontext-of-entity-framework-4-1-to-test
Using lambdas in EF Include http://romiller.com/2010/07/14/ef-ctp4-tips-tricks-include-with-lambda/
Ninject and asp.net mvc3 https://github.com/ninject/ninject.web.mvc/wiki/Setting-up-an-MVC3-application
Remember what we're testing http://stackoverflow.com/questions/5067838/asp-mvc-3-testing-controller-calling-modelstate-isvalid-always-returns-true
Globalization http://odetocode.com/Blogs/scott/archive/2009/07/16/resource-files-and-asp-net-mvc-projects.aspx
Integration testing
http://blog.codeville.net/2009/06/11/integration-testing-your-aspnet-mvc-application/
http://www.codeproject.com/Articles/98373/Integration-testing-an-ASP-NET-MVC-application-wit.aspx
http://www.reimers.dk/jacob-reimers-blog/testing-your-web-application-with-iis-express-and-unit-tests
21 notes · View notes
devsnews · 2 years ago
Link
Entity Framework is an open-source object-relational mapping (ORM) framework for the Microsoft .NET framework. It enables developers to work with data using objects of domain-specific classes without focusing on the underlying database tables and columns where this data is stored. Entity Framework provides an abstraction layer over the relational database schema, allowing developers to work with data in an object-oriented way. It also offers a set of tools for generating and updating database schema. Recently Microsoft announced a plan for Entity Framework (EF) Core 8. You can read about proposals in this announcement more in this article.
0 notes