|
|
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.
|
39 Articles match "Objects","Templates"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
The latest version of the C# programming language comes with many new features intended to increase developer productivity, including automatic properties, object initializers, collection initializers, and partial methods. LINQ to Objects The central feature of.NET 3.5 Now we can group, sort, and filter in-memory collections of objects. At the same time, it provides a way to perform serialization of objects to XML, while supplying a bridge to legacy API's, such as XPath and XSLT. In this course, you learn to: Leverage new features of C# 3.0, Appendices ASP.NET 3.5
DevelopMentor Courses
- Friday, June 12, 2009
Essential Techniques for Gathering Requirements
case study driven workshop comprises more than half the course and provides a real-world example, templates, and job aids to reference once you are back on the job. Success is dependent on a mixture of technical skills (i.e. knowing which technique to use and how to use it) and interpersonal skills (i.e. building relationships, listening, and gaining consensus). In this highly interactive 2-day course, you will learn how to enhance and refine your elicitation skills. Industry best practices are explained and then augmented with professional tips and methods.
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. Hibernate is a powerful enabler that addresses object/relational persistence in the Java world. Map Java classes to relational tables.
DevelopMentor Courses
- Friday, June 12, 2009
|
28 Articles match "Objects","Templates"
|
The Latest from DevelopMentor
|
MORE
|
|
Purchasing Visual Studio 2010
Provision environment from template 3. UML is a registered trademark of Object Management Group, Inc. Amazon sells various versions of Visual Studio 2010. Here is an overview of versions and this will give you a good indication of prices. Below the prices is a feature comparison also…. Visual Studio Professional. Plain. Upgrade from 2005/2008. with MSDN. Visual Studio Premium. with new MSDN. with MSDN renewal. Visual Studio Utlimate. with new MSDN. with MSDN renewal. Visual Studio 2010 Feature Comparison. Debugging & Diagnostic. IntelliTrace (Historical Debugger). Profiling.
The Blomsma Code
- Tuesday, July 13, 2010
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. 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 containing another T4 template that generates DTO’s that also have an ObjectState property. Download code for this post here. NET client.
Tony and Zuzana's World
- Friday, February 19, 2010
MVVM: IUIVisualizer and event management with behaviors
void Register( string key, Type winType); bool Unregister( string key); bool Show( string key, object state, bool setOwner, EventHandler. ShowDialog( string key, object state); }. }. The template decides how to render each item in the ListBox – the PictureViewModel in this case. In this post, we will look at the IUIVisualizer , and bring together some of the concepts we’ve talked about already through a new sample – a simple picture viewer: The application grabs all the images from the user’s photo folder and then displays each one onto the surface of a corkboard. par ??
Mark's Blog of Random Thoughts
- 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. However, after searching for a few hours, I could not find any templates to generate POCOs. There were templates galore for various frameworks, such as n-tiers, NHibernate, CSLA, and PLINKO. T4 template is just a text file with a.tt The answer: None. Enjoy.
Tony and Zuzana's World
- Friday, January 16, 2009
-
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. 34; Under the Code category select "ADO.NET Self-Tracking Entities" and name the T4 template Northwind.tt. template to the NorthwindModel project. Entity Framework 4.0 Move the Northwind.Types.tt
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. Create customized code generation templates (for example, POCO classes). 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. Lazy Loading.
Tony and Zuzana's World
- Thursday, July 9, 2009
-
WPF Data Providers
It ships with two out of the box: ObjectDataProvider: allows you to execute binding expressions against an object and it's methods. side note here is that you could write your own custom data provider if you needed to, although if the data is exposed through a.NET object, then the ObjectDataProvider is probably sufficient. We could clearly do all of this from procedural code -- create an XmlReader object, load the data and render each XmlNode into the listbox. This, of course, is because the data is really an XmlNode object which the ListBox has no idea how to display.
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
Learn What’s New in Entity Framework 4.0!
T4 Code-Generation Templates. The course also includes coverage of LINQ (Objects, XML, SQL) and ADO.NET Data Services. 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. 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. Lazy Loading. Change-Tracking Options. Model-First and Code-Only Approaches. Tier Support. To sign up, register here: [link]. For a little background on myself, here’s my bio.
Tony and Zuzana's World
- Saturday, December 12, 2009
-
Entity Framework Preview
The next version of the Entity Framework has a bunch of cool features a lot of have been clamoring for, such as support for POCO (Plain Old CLR Objects), lazy loading, and n-tier scenarios. POCO Templates. The Entity Framework team just released CTP 1 of the Entity Framework for.NET 4.0 Beta 1. The team has also posted a series of walkthroughs you can try out: Self-Tracking Entities. Code-Only Design. Enjoy.
Tony and Zuzana's World
- Saturday, June 27, 2009
-
Entity Framework Preview
The next version of the Entity Framework has a bunch of cool features a lot of have been clamoring for, such as support for POCO (Plain Old CLR Objects), lazy loading, and n-tier scenarios. POCO Templates. The Entity Framework team just released CTP 1 of the Entity Framework for.NET 4.0 Beta 1. The team has also posted a series of walkthroughs you can try out:rn. Self-Tracking Entities. Code-Only Design. Enjoy.
Tony and Zuzana's World
- Saturday, June 27, 2009
|
|
|