|
|
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.
|
60 Articles match "2009","Course"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
In this course, you learn to: Leverage new features of C# 3.0, Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding. You'll get answers to these questions: When should I use LINQ instead of "classic" ADO.NET? How is LINQ to Entities different from LINQ to SQL? Appendices ASP.NET 3.5
DevelopMentor Courses
- Friday, June 12, 2009
Foundations of Agile Development using Scrum
The course teaches the concepts of short delivery cycles, working with changing requirements and empirical process control. This course gives an overview of technical and management practices for Scrum. Students will learn how to work in deliver software in time-boxed iterations, hold Scrum meetings, manage work backlogs and prioritize work to satisfy business need. They will also learn how, in a changing environment, to keep high quality code, design software and discover requirements. Agile & Scrum Overview What is a Agile? What is Scrum?
DevelopMentor Courses
- Wednesday, June 17, 2009
Essential Spring 2.5 and Hibernate
Work with Spring's support for transactions Understand how to use Hibernate within the Spring framework Integrating Hibernate and Spring is a five day in-depth course geared for experienced Java developers who need to understand what Hibernate is in terms of today's systems and architectures, and how to apply Hibernate to persistence requirements in Java and J2EE applications.? The course then covers to the Spring framework and how to integrate Hibernate as the persistence layer for Spring applications. Map Java classes to relational tables. Spring makes J2EE development easier.
DevelopMentor Courses
- Friday, June 12, 2009
|
60 Articles match "2009","Course"
|
The Latest from DevelopMentor
|
MORE
|
|
ELINQ with EF 4.0 Course Update
I’ve been working feverishly the last couple of months to update my DevelopMentor course: Essential LINQ with Entity Framework 4.0. Here is a breakdown of the course content: Day 1: 1. Here’s when and where we’re offering the course: Boston: February 9-12, 2010 London: February 23-26, 2010 Los Angeles: March 30-April 2, 2010 Boston: April 20-23, 2010 London: May 4-7, 2010 Los Angeles: June 8-11, 2010 Boston: June 29-July 2, 2010. Functional Programming in C# 2. LINQ to Objects 3. LINQ to XML. Day 2: 4. LINQ to SQL 5. EF: Architecture 6. EF: LINQ to Entities. Day 3: 7.
Tony and Zuzana's World
- Tuesday, December 29, 2009
Learn What’s New in Entity Framework 4.0!
I’ll be presenting a free DevelopMentor web cast on Tuesday Dec 8, 2009 at 9:00 am (Pacific Standard Time) on new features in Entity Framework 4.0. If you would like to get a complete in-depth treatment of everything Entity Framework has to offer, sign up for my DevelopMentor course, Essential LINQ with Entity Framework 4.0 , running in Los Angeles, Boston and London. The course also includes coverage of LINQ (Objects, XML, SQL) and ADO.NET Data Services. There’s way too much that’s new to cover in a 90 minute web cast, but we’ll be focusing on the biggies: POCO Classes.
Tony and Zuzana's World
- Saturday, December 12, 2009
Banks spend a lot on IT but its a mess
This article lends some weight to those stories I hear in pubs, at conferences and during training courses. Living and working in London means a lot of the software people I meet and talk to work in financial services. It amazes me the number of programmers etc. that banks employ. And you hear stories, some really awful stories about the state of IT in banks. And I’ve seen a few in my time. So, for all those readers out there who have to work with banks and other financial services companies I recommend you get hold of a copy of this weeks Economist and read “Silo but deadly.”
Allan Kelly's Blog
- Wednesday, December 9, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Using Model – View – ViewModel with Silverlight
Of course there is no need to duplicate properties the UI is never going to bind to directly. The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. have found it extremely easy to use when developing very different applications and have used the design pattern recently in both ASP.NET, WPF and Silverlight applications. However easy as it might be is seems to confuse people as I have seen some terrible examples where people make a complete mess of things. The View is data bound to a ViewModel. This is the most important step to remember.
The Problem Solver
- Tuesday, April 7, 2009
-
Public training course next week
While I’m on the subject of training courses. m teaching two public courses next week fro DeveloMentor in London - Foundations and Requirements. believe there are places left, if you (or someone you know) calls DevelopMentor quickly and mentions my name you might even get a discount
Allan Kelly's Blog
- Tuesday, September 15, 2009
-
ELINQ with EF 4.0 Course Update
I’ve been working feverishly the last couple of months to update my DevelopMentor course: Essential LINQ with Entity Framework 4.0. Here is a breakdown of the course content: Day 1: 1. Here’s when and where we’re offering the course: Boston: February 9-12, 2010 London: February 23-26, 2010 Los Angeles: March 30-April 2, 2010 Boston: April 20-23, 2010 London: May 4-7, 2010 Los Angeles: June 8-11, 2010 Boston: June 29-July 2, 2010. Functional Programming in C# 2. LINQ to Objects 3. LINQ to XML. Day 2: 4. LINQ to SQL 5. EF: Architecture 6. EF: LINQ to Entities. Day 3: 7.
Tony and Zuzana's World
- Tuesday, December 29, 2009
-
Paging with the Silverlight RIA services DomainDataSource
Of course it is just a matter of setting properties so doing so from code is easy enough. Using the declarative DomainDataSource that is part of the upcoming Silverlight 3 RIA services makes it quite easy to work with data. All you need to do is add a DomainDataSource control to the the XAML, point it to the generated DomainContext class (in this case NorthwindContext) and tell it which method to use to load the data from the web service(in this case LoadCustomers). Next add a DataGrid to display the data and you are good to go. Adding paging. Using progressive loading. Enjoy!
The Problem Solver
- Monday, April 27, 2009
-
WCF Duplex Messaging
Now the issue is of course that the call is going to be processed on a non UI thread so you would have to manually marshal any UI interaction using the SynchronizationContext.Post method. I am one of the moderators of the MSDN WCF Forum. One of the main areas of questions on the forum is duplex messaging – particularly using the WSDualHttpBinding. What is Duplex Messaging? However, the first three of these are supported natively in WCF and are known as One-way, request/response and duplex. So Duplex messaging is where, unsolicited, the client and service can send eachother messages.
.NET Meanderings
- Tuesday, June 9, 2009
-
The new Windows Workflow Foundation 4 runtime
Of course this would affect every workflow created through the same WorkflowRuntime. With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. In WF4 this central class no longer exists and we manage individual workflows. To compare the two, this is what a minimal console application looks like in WF3. It basically runs a workflow and prints a message when done: static void Main( string [] args). {. using (WorkflowRuntime workflowRuntime = new WorkflowRuntime()). {. quot; ); Console.ReadLine(); }. }. Enjoy.
The Problem Solver
- Tuesday, June 23, 2009
-
The Loathsome Ritual of Predictions for 2009
And so it goes for another year… Of course I do have a few genuine predictions for 2009: PDC 2009 will be about mobile and other portable devices. Microsoft will pre-announce a mobile app store but it will be mostly vaporware in 2009. What do YOU think will happen in 2009? Oh how I love and loathe the yearly cycle of predictions… Hard drives will get bigger! Processors will get faster and gain more cores! Web pages will get heavier! Billy Hollis will reiterate his doctrine of smart client superiority! Joel from Canada will say something about VSTS!
Ardent Dev
- Wednesday, January 7, 2009
|
|
|