December 2007 - Posts
Roger Jennings, in his recent post Controlling the Depth and Order of EntitySets for 1:Many Associations , makes a case for the importance of two features in an O/RM if you want to build data-centric web services using it: the ability to do a filtered
Read More...
In my last post I started a survey of problems with building data-centric web services. When we left our hero (you my intrepid entity framework programmer) things were looking pretty bleak. So far we’ve talked about the challenges. Now let’s talk about
Read More...
Let’s say I’ve got a database and even some decent technology to help me to handle persistence between that database and my business objects which create a nice abstraction over the data and enforce validation. I’ve also got clients (maybe rich apps,
Read More...
One of the challenges encountered when using DataContract serialization (the default for WCF web services) is support for polymorphic types. If you have a type hierarchy (eg. class A and class B which inherits from A) and each class in the hierarchy has
Read More...
In a previous post I shared some code which can be used to compute an original value version of an object using the information stored in ObjectStateManager, and in this post I gave some background about how the state manager and the relationship manager
Read More...
Sanjay Nagamangalam who is the lead PM for the Entity Designer wrote up this great how-to for taking existing EF metadata files and bootstrapping them into the designer. Thanks Sanjay! How To: use your existing CSDL/MSL/SSDL files in the Entity Designer
Read More...
It has been a long time in coming (especially for those of you who have installed VS 2008 RTM and then been frustrated about the inability of beta 2 to work with it), but beta 3 of the Entity Framework and CTP 2 of the EF Designer are finally available!
Read More...
While there are places nearby that do get a lot of snow, normally weather is pretty mild around here. This year, though, December brought with it snow for real (not to mention power outages and other adventures)... Of course now that the power outages
Read More...
Recently I shared this post which has some code that demonstrates how to create an object matching the original state of an entity tracked in the ObjectStateManager. While this is useful, it’s more interesting to create the entire original value graph.
Read More...