.NET news » Search results

Search results for query "entity framework" (25):

ASP.NET MVC & the ADO.NET Entity Framework

Both ASP.NET MVC and the ADO.NET Entity Framework are both very popular topics right now in the developer community.Having spoken at various user group meeting and code camps it is very obvious to me what topics a lot of developers are interested in. I see that sessions about ASP.NET MVC or the Entity Framework are always packed with developers eager for more information. The focus of this article is the Entity Framework, but in the context of an ASP.NET MVC application. As such, I am assuming at least basic understanding of ASP.NET MVC but little-to-none with Entity Framework.

2010-08-22 19:00:00   Source: ASP.NET MVC & the ADO.NET Entity...   Tags: ASP.NET

Entity Framework: Code First in the ADO.NET Entity Framework 4.1

The latest version of the Entity Framework includes two new main features: the DbContext API and the Code First development pattern. We show you how to use these to develop applications, starting with the basics and moving on to more advanced techniques.
2011-05-01 19:00:00   Source: Entity   Tags: Algorithms

Finally! Entity Framework working in fully disconnected N-tier web app

Entity Framework is world’s most difficult ORM for n-tier application. See how I have produced a 100% unit testable fully n-tier compliant data access layer following the repository pattern using Entity Framework.
2011-06-11 11:18:00   Source: Finally! Entity   Tags: Algorithms

Entity Framework: New Features in the Entity Framework June CTP

The Microsoft Entity Framework (EF) June 2011 CTP brings support for a number of the features developers want most, like enums, spatial types, and TVFs. Srikanth Mandadi introduces these new features by walking you through some simple examples.
2011-08-29 19:00:00   Source: Entity   Tags: Examples

Entity Framework 4.1: Code First

The Entity Framework team at Microsoft has been making several improvements since the launch of v4 with Visual Studio. The biggest of these is the capability to use a Code First or Code Only development model. Previously, if you wanted to work with the Entity Framework, you had to use either a Database First or Model First development model.

2011-06-30 19:00:00   Source: Entity   Tags: Visual Studio

Using Spatial Data with SQL Server 2012, Entity Framework 5 and ASP.NET MVC

One of the highly-anticipated features in the Entity Framework 5 is a Spatial support.

Explore the Data Access Options in Visual Studio 2008

In Visual Studio 2008 running on the .NET framework 3.5, developers can not only create DataReaders and DataSets; Microsoft has also added LINQ to SQL, Entity Framework, and ADO.NET Data Services, which leverages the first two. These new options of course, mean that you have new syntaxes to learn. LINQ, which is built into Visual Basic and C#, has one implementation for LINQ to SQL and another for LINQ to Entities. In Entity Framework, you have the option to use LINQ to Entities or make queries in two other ways with Entity SQL…

2008-11-03 19:55:43   Source: Explore the Data Access Options in Visual Studio 2008   Tags: Visual Studio

Deny Table Access to the Entity Framework Without Causing a Mutiny

Julie Lerman shows database administrators how to limit access to databases from the Entity Framework by allowing it to work only with views and stored procedures instead of tables—without impacting application code or alienating developers.

Entity Framework Preview: code first, ObjectSet and DbContext

With the code first feature in Entity Framework, there is no visual data model and no XML describing that model. You simply create the classes for your application domain and go. We’ll show you this and several other nifty new features in the latest EF CTP.
2010-09-30 19:00:00   Source: Entity   Tags: XML

Profiling Database Activity in the Entity Framework

It’s important to profile your database queries to see what happens in response to Entity Framework queries and other data access activities, says Julie Lerman, who gives you the details on several profiling options to improve you coding.