|
|
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.
|
23 Articles match "Framework","LINQ"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
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. 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? How can I use stored procedures with LINQ to retrieve and update relational databases? Essential LINQ with the Entity Framework Day 1 New Features of C# 3.0
DevelopMentor Courses
- Friday, June 12, 2009
Essential LINQ with the Entity Framework 4.0
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to Entities queries to execute 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 Learn how to implement Repository and Unit of Work design patterns with EF 4.0 How is LINQ to Entities different from LINQ to SQL? Overview With.NET 3.5
DevelopMentor Courses
- Monday, October 12, 2009
Essential Entity Framework 4.0 with Data Services
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Write LINQ to XML queries to search XML documents and save them to the file system Create LINQ to Entities queries to execute stored procedures and perform updates in real-world database applications Build a rich conceptual entity model using the EF and visually map it to a database schema Learn how to implement Repository and Unit of Work design patterns with EF 4.0 How is LINQ to Entities different from LINQ to SQL? and Visual Studio 2010.
DevelopMentor Courses
- Friday, May 7, 2010
|
29 Articles match "Framework","LINQ"
|
The Latest from DevelopMentor
|
MORE
|
|
The NoSQL Movement, LINQ, and MongoDB - Oh My!
Interact with the database using LINQ. Shortly we’ll look at an example where we build out a disconnected, offline RSS reader that uses MongoDB and LINQ to store its data. You have several options when choosing how to access MongoDB from.NET but generally that means using LINQ and a light-weight object-mapper on top of MongoDB itself. Then we’d use LINQ to SQL or Entity Framework to generate the ORM classes. We begin by generating the objects (Blog, RssEntry, etc) in memory and then serializing them via NoRM to MongoDB much as you would in LINQ to SQL.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
WCF Data Services versus WCF Soap Services
All you have to do for a.NET client is simply write a LINQ query, and Data Services will translate it to a URI sent to the service. Scott Hanselman Interview with Pabro Castro on OData Open Data Protocol (OData) WCF Data Services Team Blog Entity Framework 4.0 Someone recently asked me this question: When a company that has been using 2 tiers wants to move to n-tier, what are the considerations for choosing WCF and STEs [or Trackable DTOs] vs. WCF Data Services? Only SOAP Services (leaving Workflow Services aside for the moment) can be used with any format and transport protocol.
Tony and Zuzana's World
- Tuesday, April 13, 2010
Join me in Boston to Talk about.NET!
If you want to learn about WCF, WPF, Silverlight, LINQ, Entity Framework, and more there is still time to sign up (note the date may no longer appear on the public calendar). [link]. I'll be in Boston, MA on March 22 to teach an open enrollment course for DevelopMentor. Mention this blog post and you'll receive a discount as well. All content copyright Michael C. Kennedy. All information, source code, and especially tools are provided as is and on a "use at your own risk" basis.
Michael C. Kennedy's Weblog
- Thursday, March 11, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
LINQ to SQL is dead
It would appear that LINQ to SQL is running on a dead end track. At PDC the announcement was made that no more investments in LINQ to SQL are made and the Entity Framework will absorb any features that LINQ to SQL has and that are worth preserving. The following message from Tim Mallalieu says it all: Is LINQ to SQL Dead? We will continue make some investments in LINQ to SQL based on customer feedback. LINQ to Entities will be the recommended data access solution for LINQ to relational scenarios. Tags: LINQ
The Blomsma Code
- Saturday, November 1, 2008
-
The NoSQL Movement, LINQ, and MongoDB - Oh My!
Interact with the database using LINQ. Shortly we’ll look at an example where we build out a disconnected, offline RSS reader that uses MongoDB and LINQ to store its data. You have several options when choosing how to access MongoDB from.NET but generally that means using LINQ and a light-weight object-mapper on top of MongoDB itself. Then we’d use LINQ to SQL or Entity Framework to generate the ORM classes. We begin by generating the objects (Blog, RssEntry, etc) in memory and then serializing them via NoRM to MongoDB much as you would in LINQ to SQL.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
-
LINQ to SQL to remain alive a little longer? LINQ to SQL changes in.NET 4.0
I guess the success for LINQ to SQL makes it hard for Entity Framework to absorb the full feature set in a single (v2) release. Here is the list as posted by Damien : LINQ to SQL changes in.NET 4.0. LINQ to SQL class designer. Code generation (SQL Metal + LINQ to SQL class designer). Tags: LINQ The team has been working on a bunch of fixes and improvements to be delivered in.NET 4.0. Change list. Performance. Query plans are reused more often by specifically defining text parameter lengths. Single/SingleOrDefault/First/FirstOrDefault. Usability.
The Blomsma Code
- Tuesday, June 2, 2009
-
MCTS Self-Paced Training Kit (Exam 70-561): Microsoft® NET Framework 3.5 ADO.NET Application Development
For me the last chapter to work on was LINQ to SQL, but the book includes chapters on learning ADO.NET, Typed DataSets, LINQ to SQL and Entity Framework. Stephen Forte has an interesting post on the relevance of LINQ to SQL. Tags: General LINQ I just send the last revision of my chapters for TK 70-561 to the editor. Hopefully the book will go to print soon. You can pre-order already on Amazon! You'll need to know it all. :-).
The Blomsma Code
- Monday, December 8, 2008
-
Entity Framework: ObjectContext.SaveChanges is transactional
The documentation doesn't specifiy it but in the Entity Framework when you call ObjectContext.SaveChanges the update is 'wrapped' in a transaction. Tags: NET C# LINQ NorthwindIBModel model = new NorthwindIBModel(); Guid id = Guid.NewGuid(); model.AddToCustomer(new Customer() { CustomerID = id, ContactName = "Andrew", CompanyName = "Northwind Traders" }); model.AddToCustomer(new Customer() { CustomerID = id, ContactName = "Aikido", CompanyName = "Northwind Traders " }); model.SaveChanges(); // exception duplicate key - transactional -> no changes to the database.
The Blomsma Code
- Monday, March 23, 2009
-
Top Ten New Features in Entity Framework 4.0
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. 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. In response, the EF team published an Entity Framework Design Blog , soliciting feedback from the community on critical design decisions. T4 Code Generation.
Tony and Zuzana's World
- Thursday, July 9, 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. The web cast includes slides and demos , as well as question-and-answer periods in which we’ll discuss some of the other new features coming 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. T4 Code-Generation Templates.
Tony and Zuzana's World
- Saturday, December 12, 2009
|
|
|