| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
15 Articles match "2010","Entity Framework"
| Related DevelopMentor Courses | MORE | | Entity Framework 5 is available Entity Framework 5 is included in Visual Studio 2012, but is also available to users of Visual Studio 2010 (as a NuGet package: [link] ). Note: Some Entity Framework 5 features are only available when writing an application that targets.NET 4.5. Entity FrameworkThis includes enum support, spatial data types, table-valued functions and the performance improvements. Read more about what is new on the MSDN ADO.NET blog: [link]. DevelopMentor Courses - Sunday, August 26, 2012 Entity Framework – Model First: Generating DDL for Complex Types The complex type consists of 4 ‘fields’: CountryCode, AreaCode, Number and Extension: Each ‘field’ has properties set: The great part is that this is fully supported by the DDL generator, so right click on the Entity Framework Designer in Visual Studio 2010 and choose ‘Generate Database From Model…’ and the ‘Artist’ table will be generated as: -- --. -- Entity Designer DDL Script for SQL Server 2005, 2008, and Azure. -- --. -- --. -- Creating all tables. -- --. -- Creating table 'Artists'. CREATE TABLE [dbo].[Artists] Artists] (. ALTER TABLE [dbo].[Artists]. DevelopMentor Courses - Saturday, July 2, 2011 Guerrilla.NET (US) Training EF : Decouple your entity model from the data using Plain Old CLR Objects (POCOs). EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. MEF : Leverage Managed Extensibility Framework (MEF),NET 4's built-in dependency management system, to implement DI and IoC seamlessly in your applications. You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2010. EF : Decouple your entity model from the data using Plain Old CLR Objects (POCOs). DevelopMentor Courses - Tuesday, March 1, 2011 |
33 Articles match "2010","Entity Framework"
| The Latest from DevelopMentor | MORE | | Mark Blomsma: Entity Framework 5 is available Entity Framework 5 is included in Visual Studio 2012, but is also available to users of Visual Studio 2010 (as a NuGet package: [link] ). Note: Some Entity Framework 5 features are only available when writing an application that targets.NET 4.5. This includes enum support, spatial data types, table-valued functions and the performance improvements. Read more about what is new on the MSDN ADO.NET blog: [link]. Update [08-27-2012] : Julie Lerman has an excellent post describing the difference between running EF5 in a.NET 4 versus a.NET 4.5 DevelopMentor Courses - Sunday, August 26, 2012 Entity Framework 5 is available Entity Framework 5 is included in Visual Studio 2012, but is also available to users of Visual Studio 2010 (as a NuGet package: [link] ). Note: Some Entity Framework 5 features are only available when writing an application that targets.NET 4.5. Entity FrameworkThis includes enum support, spatial data types, table-valued functions and the performance improvements. Read more about what is new on the MSDN ADO.NET blog: [link]. DevelopMentor Courses - Sunday, August 26, 2012 Entity Framework – Model First: Generating DDL for Complex Types The complex type consists of 4 ‘fields’: CountryCode, AreaCode, Number and Extension: Each ‘field’ has properties set: The great part is that this is fully supported by the DDL generator, so right click on the Entity Framework Designer in Visual Studio 2010 and choose ‘Generate Database From Model…’ and the ‘Artist’ table will be generated as: -- --. -- Entity Designer DDL Script for SQL Server 2005, 2008, and Azure. -- --. -- --. -- Creating all tables. -- --. -- Creating table 'Artists'. CREATE TABLE [dbo].[Artists] Artists] (. ALTER TABLE [dbo].[Artists]. DevelopMentor Courses - Saturday, July 2, 2011 | -
| The Best from DevelopMentor | MORE | - Entity Framework 5 is available
Entity Framework 5 is included in Visual Studio 2012, but is also available to users of Visual Studio 2010 (as a NuGet package: [link] ). Note: Some Entity Framework 5 features are only available when writing an application that targets.NET 4.5. Entity FrameworkThis includes enum support, spatial data types, table-valued functions and the performance improvements. Read more about what is new on the MSDN ADO.NET blog: [link]. DevelopMentor Courses - Sunday, August 26, 2012 - Reporting using Entity Framework
Technologies like Entity Framework help us convert data in the database to.NET objects and add logic. 39: Next step is to create a WCF service application, add an Entity Framework model and drag the two views onto the model: Next we’ll implement two methods to use the Entity Framework model to select the data and return a list of CustomerView or OrderView objects. Tags: NET C# Community Visual Studio 2010 Life is good. Then it is time to create a report. Out the door goes the reuse of your.NET based business logic, right? Let’s look at a sample. The Blomsma Code - Wednesday, October 20, 2010 - Entity Framework – Model First: Generating DDL for Complex Types
The complex type consists of 4 ‘fields’: CountryCode, AreaCode, Number and Extension: Each ‘field’ has properties set: The great part is that this is fully supported by the DDL generator, so right click on the Entity Framework Designer in Visual Studio 2010 and choose ‘Generate Database From Model…’ and the ‘Artist’ table will be generated as: -- --. -- Entity Designer DDL Script for SQL Server 2005, 2008, and Azure. -- --. -- --. -- Creating all tables. -- --. -- Creating table 'Artists'. CREATE TABLE [dbo].[Artists] Artists] (. ALTER TABLE [dbo].[Artists]. DevelopMentor Courses - Saturday, July 2, 2011 - Entity Framework 4 : ContextOption.LazyLoadingEnabled
Entity Framework 4 enables lazy loading of entities by default. So using Entity Framework your code may look something like this: 1: using ( MyEntities db = new MyEntities () ). If however the Employee entity has a relationship things get a little interesting. Suppose the Employee has a relationship with a Department entity (via a property named ‘Department’). According to the documentation ( [link] ) it should default to false.NET C# Visual Studio 2010 WCFThis is especially true if you’re connecting to a database. The Blomsma Code - Tuesday, January 18, 2011 - Webinar: N-Tier Entity Framework with DTOs
I recently delivered a free webinar for DevelopMentor on n-tier application development using Entity Framework 4.0. In it I explained how to use what I call “Trackable Data Transfer Objects” to achieve the same result as “Self-Tracking Entities” but using a more lightweight tracking mechanism to achieve better interoperability, as I outlined in this blog post. The screencast video is now available to be streamed or downloaded. The slides and code for the presentation are also available. Tony and Zuzana's World - Wednesday, April 21, 2010 - Webinar: Real-World Entity Framework
I just delivered a screencast for DevelopMentor on Entity Framwork Real World topics – Transactions, Concurrency, Stored Procedures. recording of the screencast will soon be available, but you can download the slides and code here. Enjoy. Tony and Zuzana's World - Tuesday, March 9, 2010 - Setting up SQL Server 2008 Express with Profiler
When I teach my DevelopMentor course on Entity Framework 4.0 and WCF Data Services , I use the Express Edition of SQL Server 2008 R2, but I have need for the SQL Profiler tool, which comes only with the full version and is needed to inspect what SQL is sent to the database. In addition, the setup folks often have a hard time getting the permissions right. So I wrote a script that first installs just the tools from a trial version of the Developer Edition, which include both SQL Management Studio and SQL Profiler. Click on the Eval X86 Executable link to download SQLFULL_x86_ENU.exe. Tony and Zuzana's World - Thursday, August 5, 2010 %>
| | |