DotNetShoutout - Stories tagged with entityframework
3
Shouts

Invalid Object Name with Entity framework -EFCodeFirstCTP5

posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 688 days, 18 hours, 54 minutes ago
Tuesday, July 05, 2011 8:21:01 AM GMT
Recently I was working on one sample application with EFCodeFirst with the existing database.After doing all the coding I have found a error “Invalid object name 'dbo.Customers'.”. Following was my code for data context using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace CodeSimplified.Models { public class MyDataContext:DbContext { public DbSet (more)
category: Web Dev | clicked: 9 | 1 comment | | source: jalpesh.blogspot.com
tags: EFCodefirst, ADO.NET, entityframework
4
Shouts

MSDN Magazine: Entity Framework - Code First in the ADO.NET Entity Framework 4.1

published 741 days, 1 hour, 10 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 743 days, 4 hours, 57 minutes ago
Saturday, May 14, 2011 2:05:59 AM GMT Wednesday, May 11, 2011 10:18:11 PM GMT
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. (more)
category: Architecture | clicked: 14 | 1 comment | | source: msdn.microsoft.com
tags: Ef4.0, Code-first, EF, EF4, Entity Framework 4.1, entityframework
7
Shouts

Using EntityFramework with ASP.NET MVC 3 - Rob Conery

published 790 days, 19 hours, 55 minutes ago posted by iftekharahmedamitiftekharahmedamit 793 days, 12 hours, 26 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 2:49:53 PM GMT
Using EntityFramework with ASP.NET MVC 3 A few people have asked about a comment I made on my last post: I might suggest (in this case) creating an ActionFilter and wrapping the Action in a transaction. It’s transparent, it’s fun… and all the kids are doing it. … and it got me thinking. All of the MSDN samples that I’ve seen which talk about using EF or LinqToSql with ASP.NET MVC almost always show the context being created inside an action or being passed in via a repository. This doesn’t have to ... (more)
category: Web Dev | clicked: 17 | comment | | source: wekeroad.com
tags: ASP.NET MVC 3, ASP.NET MVC, entityframework, MVC, ASP.NET
4
Shouts

How to: Pre-Generate Views to Improve Query Performance

published 794 days, 6 hours, 8 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 795 days, 3 hours, 48 minutes ago
Monday, March 21, 2011 9:07:32 PM GMT Sunday, March 20, 2011 11:27:41 PM GMT
Before the Entity Framework can execute a query against a conceptual model or save changes to the data source, it must generate a set of local query views to access the database. The views are part of the metadata which is cached per application domain. If you create multiple object context instances in the same application domain, they will reuse vi... (more)
category: Data | clicked: 13 | comment | | source: msdn.microsoft.com
tags: entityframework4, Entity Framework, EF4, EF 4.0, entityframework, entity framework 4.0, Entity Framework 4
3
Shouts

Looking at EF4 CTP5 in Parts: Part 1 - A New T4 Template : Don't Be Iffy

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 44 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:31:47 AM GMT
The Entity Framework 4 CTP5 was just released. There are lots of new features that affect the core use of Entity Framework as well as Code First. I’ll run through some of these features one blog post at a time. The first is the new T4 Template that gets installed, the ADO.NET DbContext Generator.   This creates a more lightweight context that inherits from DbContext. DbContext was introduced in CTP4 and exposes a simpler way of working with most commonly used features of ObjectContext.   The POCO ... (more)
category: Architecture | clicked: 0 | comment | | source: thedatafarm.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, ef code first, Entity Framework 4
3
Shouts

Looking at EF4 CTP5 in Parts: Part 4–Working with New and Existing Databases in Code First : Don't Be Iffy

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 47 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:28:55 AM GMT
One of the neat features of Code First  in CTP5 for those who are starting from total scratch…no database at all.. is that there is default behavior for working with a database. You don’t even need a database connection string. If you do not specify a connection string anywhere …code or config…then Code First will make a presumption about the database.  THe default presumption is that the database is the same name as your context class and is a local SQL Server Express instance. Here’s an example. I’ve... (more)
category: Architecture | clicked: 0 | comment | | source: thedatafarm.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, ef code first, Entity Framework 4
3
Shouts

Looking at EF4 CTP5 in Parts: Part 3–Easy Access to In-Memory Entities : Don't Be Iffy

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 47 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:28:06 AM GMT
One of my most oft-repeated bits of EF guidance is that “a query’s job is to execute”. If you write a query such as var myquery=context.Customers.Where(c=>Id==24); Any time you do soomthing with myquery, such as call ToList or Count or bind it to a databinding control, it will be exeucted on the database. (more)
category: Architecture | clicked: 0 | comment | | source: thedatafarm.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, ef code first, Entity Framework 4
4
Shouts

Looking at EF4 CTP5 in Parts: Part 2–Internal Validation : Don't Be Iffy

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 49 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:26:52 AM GMT
CTP5 provides validation for validator attributes in your classes. (more)
category: Architecture | clicked: 0 | comment | | source: thedatafarm.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, ef code first, Entity Framework 4
5
Shouts

EF Feature CTP5 Released! - ADO.NET team blog - Site Home - MSDN Blogs

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 50 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:25:46 AM GMT
The latest Entity Framework Feature Community Technology Preview (CTP5) is now available for download. This CTP includes updates to the Code First feature and the simplified API surface (DbContext). (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, ef code first, Entity Framework 4
5
Shouts

EF Feature CTP5: Code First Walkthrough - ADO.NET team blog - Site Home - MSDN Blogs

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 51 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:24:53 AM GMT
This post will provide an introduction to Code First development. Code First allows you to define your model using C# or VB.Net classes, optionally additional configuration can be performed using attributes on your classes and properties or by using a Fluent API. Your model can be used to generate a database schema or to map to an existing database. (more)
category: Architecture | clicked: 1 | comment | | source: blogs.msdn.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, ef code first, Entity Framework 4
3
Shouts

EF Feature CTP5: Model & Database First with DbContext - ADO.NET team blog - Site Home - MSDN Blogs

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 52 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:23:48 AM GMT
This post will provide an introduction to Model First and Database First development using the Entity Data Model Designer in Visual Studio. (more)
category: Architecture | clicked: 3 | comment | | source: blogs.msdn.com
tags: entityframework 4, Code-first, EF, entityframework4, Entity Framework, EF4, entityframework, Entity Framework 4
3
Shouts

EF Feature CTP5: Fluent API Samples - ADO.NET team blog - Site Home - MSDN Blogs

published 896 days, 18 hours, 52 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 16 hours, 55 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 10:20:21 AM GMT
We have released Entity Framework Feature Community Technology Preview 5 (CTP5) . Feature CTP5 contains a preview of new features that we are planning to release as a stand-alone package in Q1 of 2011 and would like to get your feedback on. Feature CTP5 builds on top of the existing Entity Framework 4 (EF4) functionality that shipped with .NET Framework 4.0 and Visual Studio 2010 and is an evolution of our previous CTPs. (more)
category: Architecture | clicked: 1 | comment | | source: blogs.msdn.com
tags: entityframework 4, Code-first, entityframework4, Entity Framework, EF4, entityframework, Entity Framework 4
5
Shouts

MSDN Magazine: Data Points - Profiling Database Activity in the Entity Framework

published 899 days, 9 hours, 30 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 901 days, 4 hours, 30 minutes ago
Monday, December 06, 2010 5:45:28 PM GMT Saturday, December 04, 2010 10:45:50 PM GMT
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. (more)
category: Data | clicked: 0 | comment | | source: msdn.microsoft.com
tags: EF, entityframework, MSDN, MSDN Magazine
6
Shouts

MSDN Magazine: Data Points - Using the Entity Framework to Reduce Network Latency to SQL Azure

published 930 days, 9 hours, 24 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 932 days, 15 hours, 35 minutes ago
Friday, November 05, 2010 5:51:43 PM GMT Wednesday, November 03, 2010 11:40:13 AM GMT
Your app may function as expected when you switch to using a cloud database, but profiling and tuning queries to account for the varying effects of network latency can help you boost overall performance. (more)
category: Data | clicked: 1 | comment | | source: msdn.microsoft.com
tags: entityframework4, EF4, entityframework, MSDN, MSDN Magazine, Azure
8
Shouts

Moses' Blog | KiGG 3.0 Released

published 951 days, 12 hours, 24 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 952 days, 18 hours, 31 minutes ago
Friday, October 15, 2010 2:51:37 PM GMT Thursday, October 14, 2010 8:44:35 AM GMT
Yesterday we released KiGG 3.0 and baselined the source code for version 3. No major changes in this release. We upgraded to ASP.Net MVC 2.0 on .Net 3.5 SP1 & VS2008. This release is going to be the last release on .Net 3.5 SP1 and VS2008. We plan to upgrade to .Net 4.0 and migrate the solution to VS2010 and start use Entity Framework 4.0 and maybe abandon LINQ to SQL support. Visit http://kigg.codeplex.com for more information. Here set of requirements for your development workstation if you are pla... (more)
category: How To | clicked: 12 | 1 comment | | source: mosesofegypt.net
tags: EF, ASPNETMVC, DotNetShoutout, entityframework, linqtosql, KiGG
6
Shouts

Moses' Blog | Book Review: Microsoft Entity Framework in Action

published 954 days, 12 hours, 48 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 955 days, 4 hours, 47 minutes ago
Tuesday, October 12, 2010 2:27:34 PM GMT Monday, October 11, 2010 10:28:21 PM GMT
About the book Title: Microsoft Entity Framework in Action Publisher:Manning Publications Url:http://www.manning.com/mostarda/ ISBN: 9781935182184 Chapters: 19 + 2 Appendices | ~500 pages Authors: Stefano Mostarda, Marco De Sanctis, Daniele Bochicchio Overall rating: 9.24 out of 10 This book was in Manning Early Access Program (MEAP) while writing this review. I reviewed a draft released on 12th August 2010. This is a detailed review where I rate each chapter and describe it’s... (more)
category: How To | clicked: 0 | comment | | source: mosesofegypt.net
tags: Review, EF, entityframework4, Entity Framework, Book Review, EDM, EF4, EF 4.0, entityframework, bookreview, Entity Framework 4
8
Shouts

MSDN Magazine: Data Points - Entity Framework Preview: code first, ObjectSet and DbContext

published 961 days, 15 hours, 50 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 963 days, 16 hours, 17 minutes ago
Tuesday, October 05, 2010 11:25:29 AM GMT Sunday, October 03, 2010 10:58:46 AM GMT
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. (more)
category: How To | clicked: 4 | comment | | source: msdn.microsoft.com
tags: EF, Entity Framework, EF4, Code first, entityframework, MSDN, MSDN Magazine
12
Shouts

Moses' Blog | Getting Started with Entity Framework 4.0 Screencast Recorded session from Cairo Code Camp - Part 5

published 968 days, 8 hours, 33 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 969 days, 19 hours, 49 minutes ago
Tuesday, September 28, 2010 6:42:30 PM GMT Monday, September 27, 2010 7:26:01 AM GMT
About Part 5 Fifth part is about 9:45 min in length. Part 5. Covers EDM -Entity Data Model- showing its elements (SSDL, CSDL & MSL). Also this screencast shows how to query your conceptual model using LINQ to Entities. I just posted 5th Part of this screencast to my channel on your tube. Source code and presentation can be found here. You can watch the HD version on your tube here. Also subscribe to my youtube channel for more upcoming screencasts. Download HD video. Part 6 will be up soon. So kee... (more)
category: Screencast | clicked: 0 | comment | | source: mosesofegypt.net
tags: linqtoentities, EF, entityframework4, EF4, entityframework, entityframework4.0, Linq To Entities, Entity Framework 4, Screencast
8
Shouts

SQL Server and MapPoint - Making MapPoint 2010 and SQL Server Spatial Work Together

published 990 days, 1 hour, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 994 days, 19 hours, 9 minutes ago
Tuesday, September 07, 2010 1:24:33 AM GMT Thursday, September 02, 2010 8:06:43 AM GMT
While SQL Server is a good repository for geospatial data, it doesn’t communicate with MapPoint as well as it could. So our geo-data experts show you how to read point and polygon objects from SQL Server and render them in MapPoint and how to write points and polygons back to SQL Server using Entity Framework 4.0 included with Visual Studio 2010. (more)
category: Data | clicked: 0 | comment | | source: msdn.microsoft.com
tags: EF, EF4, entityframework, MSDN, VS2010, SQLServer, MSDN Magazine
7
Shouts

Entity Framework 4.0- Bind Stored Procedure with Result Entity class

published 1009 days, 12 hours, 43 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 1010 days, 7 hours, 21 minutes ago
Wednesday, August 18, 2010 2:32:16 PM GMT Tuesday, August 17, 2010 7:54:05 PM GMT
Microsoft Entity Framework version 4.0 is a brand new ORM(Object Relational Mapper) from Microsoft. It’s provides now some new features which are not there in the earlier version of Entity framework. Let’s walk through a simple example of a new features which will create a new Entity class based on stored procedure result. We will use same table for this example for which they have used earlier for Linq Binding with Custom Entity. Below is the table which have simple fields like first name,last name etc... (more)
category: Data | clicked: 2 | comment | | source: jalpesh.blogspot.com
tags: Ef4.0, entityframework
Previous 1 2 3 Next