It's possible to map a VIEW using Fluent NHibernate? If so, how?
|
feedback
|
|
I would think you could just replace your the table name with your view name using the WithTable method:
Edit: Just to update this answer, Fluent NHibernate now uses:
| ||||
|
feedback
|
|
mxmissile's answer is correct but I wanted to add that the view will have to be updateable (SQL Server term.) if you want to do inserts or updates against it. I have several tables mapped against views that filter out inactive records because these tables allow soft deletes. | |||||
feedback
|