I should have labeled samples (instead of commons). For instance samples for adding additional interfaces or namespaces to typed views depending on a certain condition. However, I beginning to find my way around.
I use the Grouping feature in the designer and noticed that a particular group of FluentHibernate Mappings has the following line generated -
Table("[AN_OPT].[dbo].[opt_m_by_day]");
Mappings in other groups are as -
Table("[dbo].[time_chunk_pattern]");
I would like all Mappings to define the table using the form - Table("[dbo].[time_chunk_pattern]");
to keep consistency when queries are generated. Any idea why does the designer append "[AN_OPT]" ?
Thanks.