views:

31

answers:

1

Hello all,

I am using FluentNhibernate and i have a question about is. Is it possible two combine data from to different database tables into on entity? I have to work with an access database and an mssql datatbase and to work with both i think it is easier to combine. For example

Db table 1 - name - address - email

Db table 2 - Selected - DateSelection

Is it possible to combine these two into on entity using Nhibernate

A: 

No, NHibernate SessionFactory has only unique connection. if you need union two table from difference database, DB2 table 2 make view! in DB1

Debop