By default Navigation Properties in Entity Frameworks creates properties at both the end of associations, now the problem I am facing is, I want to mark some associations to generate properties at both ends and some to generate only for child of association. Ok I know I can customize the template, but I have no way to store any information inside EDMX editor where I can tell my code generator to skip generating specific navigation property for current class.
I wish there would be something in property pane or I can extend to add some more property in it.
Update: I know I can abuse documentation property, but I am thinking of some way where I can create Visual Studio Extension (write lots of code using VS SDK) and make it integrate with EDMX editor like we add attached properties in WPF.