|
|
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.
|
50 Articles match "2009","Objects"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to SQL queries to execute SQL Server stored procedures and perform updates in real-world database applications Write LINQ to XML queries to search XML documents and save them to the file system Build a rich conceptual entity model using the EF and to visually map it to a database schema Use LINQ to Entities to write strongly typed queries against the Entity Data Model Detect and resolve concurrency conflicts with both LINQ to SQL and LINQ to Entities Execute business
DevelopMentor Courses
- Friday, June 12, 2009
Essential Spring 2.5 and Hibernate
Explain how the issues associated with object persistence in a relational model are addressed by Hibernate Understand the relationships between SQL, Java, Spring, and Hibernate Discuss the challenges to adopting Hibernate in the enterprise Write applications that take advantage of the Hibernate Persistence Manager. Understand the persistent object lifecycle and how that relates to transactions and concurrency. Map Java classes to relational tables. Capture both relational and inheritance associations in metadata using either XML or the Java 5 Annotations mechanism.
DevelopMentor Courses
- Friday, June 12, 2009
Foundations of C# Programming and the .NET Framework
Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Perform error notification and error handling using exceptions Use properties to implement the private data/public accessor pattern Use namespaces to group related types Use delegates and events to implement callbacks Override Object class methods such as ToString Avoid dll conflicts during deployment Use dynamic binding and polymorphism to write generic code (i.e., Day 2 Class A class is a key object-oriented programming
DevelopMentor Courses
- Friday, June 12, 2009
|
57 Articles match "2009","Objects"
|
The Latest from DevelopMentor
|
MORE
|
|
ELINQ with EF 4.0 Course Update
LINQ to Objects 3. 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.
Tony and Zuzana's World
- Tuesday, December 29, 2009
Rehosting the Workflow Designer in WF4
The WorkflowDesigner has an Items collection with a bunch of useful objects in there. One of these is a Selection object. Note: This blog post is written using the .NET NET framework 4.0 Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application.
The Problem Solver
- Wednesday, December 23, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Using Model – View – ViewModel with Silverlight
The code behind is very simple and looks like this:
1: using System.Windows.Controls;
2: using SilverlightMVVMDemo.ViewModel;
3:
4: namespace SilverlightMVVMDemo.View
5: {
6: public partial class CustomerView : UserControl
7: {
8: public CustomerView()
9: {
10: InitializeComponent();
11: DataContext = new CustomerViewModel();
12: }
13:
14: private
The Problem Solver
- Tuesday, April 7, 2009
-
Sending your own objects to a WF4 workflow
So how about passing some more complex data. To show how to do so I will replace the singe string with a person object. The CreateWorkflow() function will change now reflecting the fact that the service will no longer expect a string but a person object. private static WorkflowElement CreateWorkflow()
{
var result = new Sequence();
var input = new Variable ();
result.Variables.Add(input);
XNamespace ns = "http://tempuri.org" ;
var handle = new Variable ();
result.Variables.Add(handle);
The Problem Solver
- Thursday, August 20, 2009
-
Significant Advances in Unit Testing Windows Workflow
are passing a strongly typed DTO (data transfer object) rather
than Define some objects that will be used across all tests. // private IAccountService
testAccountSvc; Kennedy.WorkflowTesting.WfRunner.RunWorkflow[T](Object workflowDTO) at SampleLibrary.Tests.WorkflowTests.CannotBuyWithInsufficentFundsTest()
The This post describes a unit testing library for testing Windows Workflow Foundations.
It It
Michael C. Kennedy's Weblog
- Sunday, January 18, 2009
-
Rehosting the Workflow Designer in WF4
The WorkflowDesigner has an Items collection with a bunch of useful objects in there. One of these is a Selection object. Note: This blog post is written using the .NET NET framework 4.0 Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application.
The Problem Solver
- Wednesday, December 23, 2009
-
Mapping from Business Objects to DTOs – Enter AutoMapper
passed and not use business objects. translate from the Data Transfer Object (DTO) in the contract to business object
and A while back I did this
post post talking about how WCF contract definitions should model the messages being
passed This inevitably means that you have
to
.NET Meanderings
- Friday, February 20, 2009
-
Six Things That’ll Surprise You About .NET 4.0
systems (say 64 cores) these types of lock free objects will become increasingly
important. I recently wrote an article for DevelopMentor ’s
Developments Developments entitled
“ Six Things
That’ll That’ll Surprise You About .NET
Michael C. Kennedy's Weblog
- Wednesday, November 11, 2009
-
TDD Invades Space Invaders
has behavior and objects working together. Boards contain game objects
Game Game objects have a witdth, height
Game Game objects have the ability to move each turn
Aliens A joint post by Llewellyn Falco and Michael
Kennedy Kennedy
As As
Michael C. Kennedy's Weblog
- Wednesday, October 28, 2009
|
|
|