I'm a little baffled by this because it seems straightforward enough to do, yet is not working. I have a little prototype application that I have added an EF model to. I wanted to try out the auto-selection for data templates using the bound type so I opened the resource xaml file and added the following: xmlns:bop="clrnamespace:BRLBackOfficePrototype"
The name of my project (and subsequently namespace) is BRLBackOfficePrototype. I also verified that the namespace for the entity (League) I am interested in is BRLBackOfficePrototype and that it is public. But when I reference the type in my datatemplate's datatype as such DataType="{x:Type bop:League}" I am getting a build error "The name "League" does not exist in the namespace "clrnamespace:BRLBackOfficePrototype". Does this have anything to do with it being a partial class? I really don't know where to go from this since as far as everything I have read and looked at, this should just work.