-
| The Latest from DevelopMentor | 85 Results found Showing page 1 of 9 Next > |
- Reblogged: What should I learn to get started in.NET and web development?
Entity framework basics. Getting started with Entity Framework. https://learninglineapp.com/courses/27/getting-started-with-entity-framework. '[ Note : I am reblogging this post which originally was posted to the LearningLine blog. Hope you all find it useful here as well]. recently had a conversation with someone who is looking to make a fresh start and become a developer (coming from other IT positions). The question they had was: What should I learn to get started in.NET and web development? How do I do that?” jQuery basics. Essential jQuery.
- Tony Sneed: Trackable Entities: N-Tier Support for Entity Framework
Consider the assortment of n-tier technologies now consigned to the ash heap of history: WCF RIA Services, Self-Tracking Entities, and good old typed DataSets. 'Writing N-Tier apps can get complicated fast. These have all suffered from lack of interoperability and … Continue reading →
DevelopMentor Courses - Saturday, April 27, 2013 - Optimistic concurrency in MongoDB using.NET and C#
That may be fine for bank transfers, but it typically falls down in the face of disconnected models used by almost all ORMs such as Entity Framework. Frameworks such as Entity Framework have optimistic concurrency control built in (although it may be turned off). Basically there are three steps: Get an entity from the DB and disconnect. The only thing you need to do to use this library in your apps is to implement this interface on all top-level MongoDB entities and use a class derived from ConcurrentDataContext (in library below) for your data access.
- Tony Sneed: Build Async Services with ASP.NET Web API and Entity Framework 6
If you are building web services that interact with a database, chances are they are not written in a scalable fashion. Web services based either on WCF, which supports both SOAP and REST, or on ASP.NET Web API, which exclusively … Continue reading →
DevelopMentor Courses - Friday, March 22, 2013 - Mark Blomsma: Upcoming Events
Here are some events in which I’m involved or which are being organized by friends: February 25, Maine Developer Network (Augusta, Maine): Two topics in this meeting: First What’s New in Entity Framework 5 and second Using NuGet and creating packages. More on: [link]. February 26, Bangor Area.NET Developer (Bangor, Maine): Two topics in this meeting. First Windows Azure and second How to get free/cheap Microsoft software. More on: [link]. March 18, SDN Event (Zeist, The Netherlands): A bunch of topics ranging from Delphi for iOS to Windows Azure to SOLID principles.
DevelopMentor Courses - Saturday, February 16, 2013 - Llewellyn Falco (Approval Tests): What's new in ApprovalTests.Net v.22 ?
This goes along with added support for: NHibernate Entity Framework DbContext (V 4.1+) Async [Contributors: Jake Ginnivan ] XUnit supports testing of methods using the async and await keywords. ApprovalTests.Net v.22 is here, you can get it on Nuget Here's what's new: UTF8 Support [Contributors: Scott Reed & Maurice De Beijer] Text Files will now work with UTF with (many/most) Diff Tools. This basically comes down to making everything UTF8, and including the bom (byte order mark) header in the text files. This is based on the ‘Testing the Weather’ pattern.
DevelopMentor Courses - Tuesday, February 5, 2013 - Speaking at Augusta Tech Talk
There will be 2 sessions; one about NuGet and one about Entity Framework 5. The invitations just went out: I’ll be presenting at Augusta Tech Talk on February 25th 2013. For more information and registration got to: [link]. Community
DevelopMentor Courses - Wednesday, January 23, 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). Here’s a quick post on how and why you want to consider using NuGet package restore. You definitely need to check out David Ebbo’s post introducing it. NuGet will change the way you develop. Now when using NuGet it maintains a packages folder near your solution file. It’s usually much larger than your project itself in the beginning.
Michael C. Kennedy's Weblog - Monday, December 17, 2012 - Join Me at Guerrilla.NET in November
in Los Angeles. Newly Updated with: Windows 8, VS 2012, MVC 4 and Entity Framework 5. Learn to write code using new.NET class libraries like Entity Framework 5, MVC 4, and even the new Windows Runtime (WinRT). LINQ and Entity Framework 5. Entity Framework 5 and Code First. Just a quick announcement for an developer upcoming event I’ll be participating in… Early November I’ll be co-teaching DevelopMentor’s biggest.NET developer event of the year in Los Angeles: Guerrilla.NET. hope to see you there! mkennedy.
Michael C. Kennedy's Weblog - Tuesday, September 25, 2012 - 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). Next we’ll generate an entity data model from the database. 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”.
DevelopMentor Courses - Sunday, September 2, 2012