Hello everybody
For my project, i need to connect to a database who don't support ADO.net by using NHibernate
So, is it possible to make my own model who can be usable by the auto-creation of views of visual studio 2010 ?
Best regards.
Hello everybody
For my project, i need to connect to a database who don't support ADO.net by using NHibernate
So, is it possible to make my own model who can be usable by the auto-creation of views of visual studio 2010 ?
Best regards.
If a DB is not supported by ADO.NET, it can't be supported by NHibernate either.
If your database is not supported by ADO.NET you must write your own ADO.NET driver implementation for the database before you can really do anything with it in .NET at all. Short of completing that, the only way you'd be able to interact with the database is if it had a client api that you could call.