Hi Amar,

I don't know about ConventionalModelMappper (never heard about it...),
but if you're using hbm files along with SchemaExport, then you can do
this in your hbm file:

<class name="SomeClass" table="MY_VIEW" schema-action="none">
    .....
    .....
    .....
  </class>
  <database-object>
        <create>
            CREATE VIEW MY_VIEW ("ID", "DESCRIPTION"...) AS
            select "CODE" as id ,"DESCRIPTION" FROM SOME_TABLE
where ....
        </create>
        <drop>DROP VIEW MY_VIEW</drop>
  </database-object>

On Feb 9, 2:18 pm, Amar Kulkarni <[email protected]> wrote:
> Hello,
>
> By mapping Entity class we are able to create the database tables by
> using Conventional Model Mapper and Class Mappings.
> But there is no provisioning for create the view .
> I know that Nhiberate Maps the Existing database view with the Entity
> Class,But unable to create the New View in database instead of Table.
>
> Any Idea to tell ConventionalModelMappper or anything in Nhibernate by
> code to Create View for the Entity Class..
>
> Thank You
>
> Amar

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to