Sign in
|
Help
Matthieu MEZIL
I love .Net
This Blog
Home
Contact
Syndication
RSS for Posts
Atom
RSS for Comments
Search
Go
Tags
.Net
ADO.NET Data Services
ADO.NET Data Services Hooking POC
Architecture
Bug
C#
EDM Designer
Entity Data Model (EDM)
Entity Framework (EF)
Fun
LINQ To Object
MEF
MSIL
Perso
POO
Quizz
SQL
T4
TDD
Tech Ed
VB .Net
VS
WCF
Winforms
WPF
News
French blog
EDM Designer
Community
Home
Blogs
Media
Groups
Email Notifications
Go
Archives
November 2009 (1)
October 2009 (4)
September 2009 (3)
August 2009 (1)
July 2009 (1)
June 2009 (7)
May 2009 (8)
April 2009 (7)
February 2009 (6)
January 2009 (3)
December 2008 (2)
November 2008 (11)
October 2008 (9)
September 2008 (2)
August 2008 (20)
July 2008 (9)
June 2008 (14)
May 2008 (11)
Browse by Tags
All Tags
»
VS
(
RSS
)
.Net
Entity Data Model (EDM)
Entity Framework (EF)
Thu, Aug 21 2008 18:23
How to have a property on ObjectContext which returns the derived entities? v2
With Danny advices, I improve my custom code generator to do this in only one generation. public class SampleEdmxCodeGenerator : BaseCodeGeneratorWithSite { private EntityContainer _objectContext; private Dictionary < string , string > _entitySetNames;...
Posted by
Matthieu MEZIL
| with
no comments
Filed under:
.Net
,
Entity Framework (EF)
,
Entity Data Model (EDM)
,
VS
Thu, Aug 21 2008 9:39
How to debug a code generator used by VS?
In my case, I wanted to debug my edmx CodeGen but you can do it for a lot of other cases. So how to debug your CodeGen? I think there is probably a better way but this is what I did: In my CodeGen, I put a MessageBox.Show I open 2 VS: one with my CodeGen...
Posted by
Matthieu MEZIL
| with
no comments
Filed under:
.Net
,
Entity Data Model (EDM)
,
VS
Thu, Aug 21 2008 8:40
How to have a property on ObjectContext which returns the derived entities?
With EF v1, we have an ObjectContext which has one property per EntitySet. The "problem" is that if you have an entity type Person and an entity type Employee which inherits Person, you will have only one property Persons because there is only...
Posted by
Matthieu MEZIL
|
1 comment(s)
Filed under:
.Net
,
Entity Framework (EF)
,
Entity Data Model (EDM)
,
VS
Thu, Aug 21 2008 3:27
Debug with the .Net Framework code
With VS2008, we were able to Debug with the .Net Framework code. But there weren't all the dll. With the SP1, yes! Moreover, the activation of this is really easier than before. You don't have anything to do! You just need to go to the call stack...
Posted by
Matthieu MEZIL
|
2 comment(s)
Filed under:
.Net
,
VS