Attribute: [View]
Posted by Gerhard Stephan on January 18th, 2008
This attribute can be used to define that a class is mapped to a database view.
[View („VW_CONTACTS“)]
public class Contact : ValueObject
The attribute is important for the Persisters, because some selects will fired in a different way, if you query a database view. If you want to map a database table, you can use the attribute called "Table".
