|
|
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.
|
104 Articles match "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
|
225 Articles match "Course"
|
The Latest from DevelopMentor
|
MORE
|
|
Converting a C# workflow into XAML
co worker of one of the attendees of the Essential Windows Workflow Foundation 4 course had been experiencing a lot of problems with the workflow designer and decided to create their workflows in C# instead of using the designer to generate XAML. A interesting question that came up last week was how to convert workflows defined in C# to XAML. While these workflows run just fine you do lose the visual aspect of the designer, one of the benefits of workflow in the first place. Take the following workflow defined in C#. And now I can continue enhancing the XAML version and run that instead.
The Problem Solver
- Saturday, August 28, 2010
Objective Agility - what does it take to be an Agile company?
Many of these themes come up in that course. Modern Analyst has published my latest piece about Agile at the company level: Objective Agility - what does it take to be an Agile company? This is actually a bit of a taster for a presentation of with the same title I’ll be doing at the IIBA Business Analysis conference in a few weeks. And talking of businesses analysis. am running an ‘Essential Agile for Business Analysts’ at Skills Matter in a few weeks. believe there is still space available.
Allan Kelly's Blog
- Wednesday, August 25, 2010
The No Business Case Myth
Of course there are instances were a business case might not exist. Once in a while I run across individuals, or even teams, who still think Agile is about just getting on and doing it. Well it is, good for them, but, that doesn’t mean there isn’t a reason for doing it. There seems to be a myth in some circles that work done using Agile techniques doesn’t require a business case. Lets get this clear: Agile does not excuse you from having a business case for your work. But in each one of these cases the lack of a business case has nothing to do with Agile.
Allan Kelly's Blog
- Monday, August 16, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
New training courses online
I’ve spent the last few weeks reviewing and revising the training courses I offer through my company, Software Strategy. The new courses are online and you can see them for yourselves on my website. The unifying theme around these courses is the management of software development projects and products. Not all the courses are fully developed yet so I have plenty of work to do. would welcome feedback on these courses: are they the right thing? and I’d especially like ideas for new courses. what needs adding? removing?
Allan Kelly's Blog
- Saturday, June 14, 2008
-
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
-
1-day Agile Project Management Course
She’s asked me point out that she still has places left on her 1-day Agile Project Management course in London this Friday. I mentioned Liz Sedley in my last post and she noticed! What’s more she promises a discount to anyone who mentioned my name when booking
Allan Kelly's Blog
- Monday, April 21, 2008
-
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
-
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
-
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
-
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
|
|
|