|
|
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.
|
25 Articles match "Objects","Templates"
|
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 Techniques for Gathering Requirements
Describe the planning, techniques, and partnerships that are vital to the success of requirements gathering Identify and differentiate between the different types of requirements that need to be gathered Describe the importance of documenting business objectives and project scope before gathering requirements Utilize a context diagram to scope the requirements Utilize a process, techniques, and templates for stakeholder identification and analysis Apply industry best practices to common issues with Stakeholders during requirements elicitation Plan and Conduct a Good Interview and a Facilitated
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
|
27 Articles match "Objects","Templates"
|
The Latest from DevelopMentor
|
MORE
|
|
Trackable DTO’s: Taking N-Tier a Step Further with EF4
This week I implemented Trackable Data Transfer Objects with EF4 using the same basic architecture that I wrote about in the article. I use two sets of T4 templates (a code-generation technology built into Visual Studio): One set is used by the Data Access Layer on the service side to generate both the ObjectContext container class and POCO classes that serve as DTO’s but have an ObjectState property. On the client side there is an assembly Download code for this post here .
Not long ago my friend and colleague Richard Blewett wrote a blog post on Self-Tracking Entities
Tony and Zuzana's World
- Friday, February 19, 2010
MVVM: IUIVisualizer and event management with behaviors
namespace JulMar.Windows.Interfaces
{
public interface IUIVisualizer
{
void Register( string key, Type winType);
bool Unregister( string key);
bool Show( string key, object state, bool setOwner,
EventHandler
completedProc);
ShowDialog( string key, object state);
}
}
Notice In this post, we will look at the IUIVisualizer , and bring together
some some of the concepts we’ve talked about already through a new sample – a simple picture
viewer:
Mark's Blog of Random Thoughts
- Friday, February 5, 2010
EF4 Self Tracking Entities – the new DataSet?
you manipulate the state the object itself tracks the changes to properties and
whether Template to generate these STEs from an EDMX file and the nice thing is that the
generated Now lets look at the T4 Template generated code for, say, the OrderLine
[DataContract(IsReference It also A while back I wrote a
blog blog post about DataSets and why you shouldn’t use them on service boundaries.
The
.NET Meanderings
- Friday, February 5, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
T4 POCO Templates for L2S and EF
In my MSDN Magazine article on SOA Data Access I recommend exposing Data Transfer Objects (DTOs) from the Data Access Layer (DAL). These objects should be Plain Old CLR Objects (POCOs) that are Persistent Ignorant (PI), eschewing traces of any particular persistence technology. (How’s However, after searching for a few hours, I could not find any templates to generate POCOs. How’s that for an alphabet soup of acronyms?!) The point here is that the DAL truly encapsulates the API you’re using to fetch and update data, which makes it possible to swap
Tony and Zuzana's World
- Friday, January 16, 2009
-
WPF Data Providers
against an object and it's methods
XmlDataProvider: loads an XML data source and makes it available
NET object, then the
We could clearly do all of this from procedural code -- create an XmlReader object,
the data is really an XmlNode object which the ListBox has no idea how to display.
One of the nifty new features of the WPF platform is the pluggable data providers.
It ships with two out of the box:
ObjectDataProvider: allows you to execute binding expressions
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
EF 4.0 N-Tier Support: Take 2
The difference is that EF uses code-generation via T4 templates to create the helper classes instead of incorporating them into assemblies for the client and service to reference. The reason is that T4 templates are totally open-source. If I don’t like what they did or want to change it in any way, all I have to do is create my own version of the template.
Following the release of Visual Studio 2010 and .NET NET 4.0
Tony and Zuzana's World
- Thursday, November 12, 2009
-
Top Ten New Features in Entity Framework 4.0
SP1) generated a fair amount of criticism , especially because it lacked many features present in LINQ to SQL, such as POCO (Plain Old CLR Objects) support, and required developers to write excessive amounts of code to deal with things like concurrency and n-tier scenarios.
Define your own objects that are completely decoupled from persistence concerns.
The Entity Framework team at Microsoft has been extremely busy this past year to get a new version of the Entity Framework out the door. The first release (which shipped last summer with .NET
Tony and Zuzana's World
- Thursday, July 9, 2009
-
Top Ten New Features in Entity Framework 4.0
SP1) generated a fair amount of criticism , especially because it lacked many features present in LINQ to SQL, such as POCO (Plain Old CLR Objects) support, and required developers to write excessive amounts of code to deal with things like concurrency and n-tier scenarios.
Define your own objects that are completely decoupled from persistence concerns.
The Entity Framework team at Microsoft has been extremely busy this past year to get a new version of the Entity Framework out the door. The first release (which shipped last summer with .NET
Tony and Zuzana's World
- Thursday, July 9, 2009
-
MVVM: Introducing the message visualizers
I start with the project template and remove all the ViewModel
and Now we can create a collection of the TitledCommand objects and display
them It returns a disposable object that you invoke Dispose
on In this post, I will go over the simple message visualizers available in the MVVM
Helpers Helpers toolkit.
-
MVVM: Service Locator
It relates a type key to a specific object implementation.
This cf0 cf5 ///cf6 cf5 cf6 Object that implements servicecf5 par ??cf0 Type (typically an interface)
/// Object that implements service
public void Add( Type type, object value);
///
/// Remove
a base class for In this post, we’ll explore the service locator (called ServiceProvider in
the the library) and introduce the specific services included with the MVVM Helper library
(as
Mark's Blog of Random Thoughts
- Wednesday, January 27, 2010
|
|
|