I am working on a CQRS style system with commands processed by NSericeBus and requests provided through the OData channel for reading.
We would like the WCF data services feed supported by NHibernate, so we can control how our data is displayed in the feed (computed fields, etc.), which the Entity Framework provider does not allow.
However, using the reflection provider with Linq to NHibernate, we get errors when navigating related objects (for example, http: // server / feed / Foo (1) / Bar ).
Has anyone done Linq for a WCF data service supported by NHibernate?
source
share