| |
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.
|
30 Articles match "Framework","Visual Studio"
| Related DevelopMentor Courses | MORE | | Entity Framework 5 + Enumerations => What’s not to love? Entity Framework 5 now supports enumerations (when using Visual Studio 2012 and targeting the.NET 4.5 framework). Using enumerations with Entity Framework 5. We need to change the type of the ‘Habitable’ column in the database to a tinyint and we need to modify the information in the conceptual schema to inform the entity framework of our change in design: The screenshot shows that we need to change the underlying type as well as check the “Set Flags attribute”. Entity Framework Visual Studio 2012So let’s have a look. DevelopMentor Courses - Sunday, September 2, 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]. Artists]. DevelopMentor Courses - Saturday, July 2, 2011 |
70 Articles match "Framework","Visual Studio"
| The Latest from DevelopMentor | MORE | | Getting started with AngularJS 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model One of the nicer JavaScript frameworks out there to work with must be AngularJS. AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. With a framework like AngularJS it is the other way round and it calls into your code. Either download this from the AngularJS site or use the NuGet package to add it to your Visual Studio 2012 project. In the case of a framework like AngularJS we let it do it’s work. The Problem Solver - Friday, April 5, 2013 Getting started with AngularJS 'One of the nicer JavaScript frameworks out there to work with must be AngularJS. AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. With a framework like AngularJS it is the other way round and it calls into your code. Either download this from the AngularJS site or use the NuGet package to add it to your Visual Studio 2012 project. In the case of a framework like AngularJS we let it do it’s work. And while it is really powerful it is also really easy to get started with. 1: 2: 3: 4: AngularJS Demo. The Problem Solver - Friday, April 5, 2013 Use NuGet package restore to simplify code sharing First, if you’re unfamiliar with NuGet, it’s basically “add reference” to external software projects (typically open source ones such as jQuery, but also for Microsoft ones such as Entity Framework). First, you’ll need to make sure everyone who downloads your zip file has “ Allow NuGet to download packages during build ” enabled in Visual Studio under Tools>Options>Package Manager. Filed under: Open Source Tagged: Open Source , tips , Visual Studio. Open Source Visual Studio tips Michael C. Kennedy's Weblog - Monday, December 17, 2012 | -
| The Best from DevelopMentor | MORE | - Entity Framework 5 + Enumerations => What’s not to love?
Entity Framework 5 now supports enumerations (when using Visual Studio 2012 and targeting the.NET 4.5 framework). Using enumerations with Entity Framework 5. We need to change the type of the ‘Habitable’ column in the database to a tinyint and we need to modify the information in the conceptual schema to inform the entity framework of our change in design: The screenshot shows that we need to change the underlying type as well as check the “Set Flags attribute”. Entity Framework Visual Studio 2012So let’s have a look. DevelopMentor Courses - Sunday, September 2, 2012 - Reporting using Entity Framework
Technologies like Entity Framework help us convert data in the database to.NET objects and add logic. No need to fear, Visual Studio offers a solution. Starting with Visual Studio 2005 Microsoft started shipping the ReportViewerControl with Visual Studio. 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. Life is good. The Blomsma Code - Wednesday, October 20, 2010 - Visual Studio 2010 and.NET Framework 4 Beta period extended
Tags: Visual Studio 2010 The Blomsma Code - Friday, December 18, 2009 - 11 Killer Open Source Projects I Found with NuGet
It's a killer new way to find, install, maintain, and manage references to open source libraries in Visual Studio 2010. What I want to talk about is all the cool open source projects I found just by flipping through the pages of the NuGet directory in the Visual Studio "Add Library Package Reference" dialog. Lucene.Net is a source code, class-per-class, API-per-API and algorithmatic port of the Java Lucene search engine to the C# and.NET platform utilizing Microsoft.NET Framework. Articles ASP.NET NoSQL Open Source Tools Visual StudioHere you go. Michael C. Kennedy's Weblog - Wednesday, January 19, 2011 - Visual Studio 2010 RC and Team Foundation Server 2010 RC available
Both Visual Studio 2010 RC as well a Team Foundation Server 2010 RC are available to MSDN Subscribers as of today. For any additional information about versions of Visual Studio 2010 and.NET Framework 4, Go to: Visual Studio 2010 and.NET Framework 4 Release Candidate. Tags: NET C# Visual Studio 2010 Go to: [link]. If you want to provide feedback on this release then you do so by using Microsoft Connect. Go to: https://connect.microsoft.com/VisualStudio. The Blomsma Code - Monday, February 8, 2010 - 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 () ). According to the documentation ( [link] ) it should default to false.NET C# Visual Studio 2010 WCFm not going to argue about whether that is good or bad, but there is something you should be aware of. If you’re like me, then over the years you’ll have learned that most classes that implement IDisposable should be used using a ‘using’ statement. 3: var query = from e in db.Employees. The Blomsma Code - Tuesday, January 18, 2011 - Use NuGet package restore to simplify code sharing
First, if you’re unfamiliar with NuGet, it’s basically “add reference” to external software projects (typically open source ones such as jQuery, but also for Microsoft ones such as Entity Framework). First, you’ll need to make sure everyone who downloads your zip file has “ Allow NuGet to download packages during build ” enabled in Visual Studio under Tools>Options>Package Manager. Filed under: Open Source Tagged: Open Source , tips , Visual Studio. Open Source Visual Studio tips Michael C. Kennedy's Weblog - Monday, December 17, 2012 %>
| | |