DotNetShoutout - Stories tagged with entityframework4
2
Shouts

MSDN Magazine: Data Points - Demystifying Entity Framework Strategies: Loading Related Data

posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 710 days, 12 hours, 1 minute ago
Sunday, June 12, 2011 11:13:22 PM GMT
With the Entity Framework, modeling the data is just a first step. You'll also need to use the right tools for querying and loading your data. We'll show you the options and help you choose the right ones for your application (more)
category: Data | clicked: 21 | comment | | source: msdn.microsoft.com
tags: entityframework4, EF4, MSDN, entityframework4.0, entity framework 4.0, Entity Framework 4, MSDN Magazine
4
Shouts

MSDN Magazine: Data Points - Demystifying Entity Framework Strategies: Model Creation Workflow

published 742 days, 2 hours, 9 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 742 days, 12 hours, 55 minutes ago
Thursday, May 12, 2011 9:05:18 AM GMT Wednesday, May 11, 2011 10:19:18 PM GMT
The Entity Framework now includes more ways than ever to create a conceptual model, starting first with just your code, a model created with the visual designer, or a legacy database. We help you choose which one’s right for you. (more)
category: Architecture | clicked: 1 | comment | | source: msdn.microsoft.com
tags: Ef4.0, EF, entityframework4, EF4, entityframework4.0, entity framework 4.0, Entity Framework 4
4
Shouts

How to: Pre-Generate Views to Improve Query Performance

published 793 days, 14 hours, 7 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 794 days, 11 hours, 46 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 42 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 45 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 46 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 47 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 48 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 49 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 50 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, 2 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 897 days, 54 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
6
Shouts

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

published 929 days, 17 hours, 22 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 931 days, 23 hours, 34 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
6
Shouts

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

published 953 days, 20 hours, 47 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 954 days, 12 hours, 46 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
12
Shouts

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

published 967 days, 16 hours, 32 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 969 days, 3 hours, 48 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
6
Shouts

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

posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1016 days, 4 hours, 2 minutes ago
Wednesday, August 11, 2010 7:12:32 AM GMT
About Part 4 Fourth part is about 10 min in length. Covers how to implement table per hierarchy inheritance model (TPH) with Entity Framework 4.0 I just posted 4th Part of this screencast to my channel on your tube. You can watch the HD version on your tube here. Also subscribe to my youtube channel for more upcoming screencasts. Download HD video. (more)
category: Screencast | clicked: 0 | comment | | source: mosesofegypt.net
tags: EF, entityframework4, EF4, entityframework, Screencast
6
Shouts

MSDN Magazine: Data Points - Deny Table Access to the Entity Framework Without Causing a Mutiny

published 1022 days, 1 hour, 36 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1023 days, 2 hours, 47 minutes ago
Thursday, August 05, 2010 9:37:51 AM GMT Wednesday, August 04, 2010 8:27:23 AM GMT
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. (more)
category: Architecture | clicked: 1 | comment | | source: msdn.microsoft.com
tags: entityframework 4, entityframework4, Entity Framework, EF4, MSDN, MSDN Magazine
7
Shouts

Absolue Beginners Guide to Entity Framework

published 1037 days, 16 hours, 31 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1038 days, 2 hours, 13 minutes ago
Tuesday, July 20, 2010 6:43:23 PM GMT Tuesday, July 20, 2010 9:00:51 AM GMT
To someone who has used emacs or a basic text editor for programming, jumping into Visual Studio 2010 can seem like going from a Cessna to a fighter jet. That’s the experience I had last week starting out at Microsoft, and my goal with this post is to provide others taking the plunge into the Entity Framework – or considering taking the plunge – with a handy guide for what it takes to get up and running. I hope that my fresh perspective will help you in a way that an experienced expert cannot. (more)
category: Data | clicked: 1 | comment | | source: blogs.msdn.com
tags: entityframework4, EF4, entityframework
8
Shouts

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

published 1042 days, 21 hours, 51 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1044 days, 5 hours ago
Thursday, July 15, 2010 1:22:57 PM GMT Wednesday, July 14, 2010 6:14:08 AM GMT
About Part 3 Third part is about 8:20 min in length. Covers how to use stored procedures with EF4 to do CRUD operations on the database. The demo shows how to do mapping to existing stored procedures. The Demo also shows how to use IntilleTrace to view executed statements made by EF object services. I just posted 3rd Part of this screencast to my channel on your tube. You can watch the HD version on your tube here. Also subscribe to my youtube channel for more upcoming screencasts. Download HD video... (more)
category: Screencast | clicked: 0 | 1 comment | | source: mosesofegypt.net
tags: entityframework4, Entity Framework, EF4, Screencast
5
Shouts

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

published 1066 days, 46 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1066 days, 21 hours, 48 minutes ago
Tuesday, June 22, 2010 10:27:47 AM GMT Monday, June 21, 2010 1:26:25 PM GMT
About Part 2 Second part is about 6:30 min in length. Covers Object Services and how to do CRUD operations using EF 4.0 object services. The demo explores EF change tracking capabilities. The demo also shows how to map return result of a stored procedure to existing entity in your EDM. (more)
category: Screencast | clicked: 0 | comment | | source: mosesofegypt.net
tags: EF, entityframework4, Entity Framework, EF4, How-To, Screencast
4
Shouts

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

published 1072 days, 31 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1072 days, 15 hours, 24 minutes ago
Wednesday, June 16, 2010 10:42:58 AM GMT Tuesday, June 15, 2010 7:50:14 PM GMT
First part is an introduction to Entity Framework 4.0 with brief about its short history. This part also include a demo about new vs2010 designer enhancements for EF4. Also the screencast shows how to do a refactor to complex type using EDM designer. (more)
category: Screencast | clicked: 0 | comment | | source: mosesofegypt.net
tags: entityframework4, EF4, How-To, entityframework, how to, Screencast
Previous 1 2 3 Next