- NHibernate - Fluent Hibernate
- NHibernate - Native Sql
- NHibernate - QueryOver Queries
- NHibernate - Criteria Queries
- NHibernate - Query Language
- NHibernate - Linq
- NHibernate - Load/Get
- NHibernate - Inverse Relationships
- NHibernate - Lazy Loading
- NHibernate - Cascades
- NHibernate - Collection Mapping
- NHibernate - Relationships
- NHibernate - Mapping Component
- NHibernate - Caching
- NHibernate - Batch Size
- NHibernate - Override Configuration
- NHibernate - Configuration
- NHibernate - Data Types Mapping
- Add Intelliesnse To Mapping File
- NHibernate - Profiler
- NHibernate - Basic Crud Operations
- NHibernate - Basic Orm
- NHibernate - Getting Started
- NHibernate - Environment Setup
- NHibernate - Orm
- NHibernate - Architecture
- NHibernate - Overview
- NHibernate - Home
NHibernate Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
NHibernate - Environment Setup
To start working on NHibernate, we will need Visual Studio and the NHibernate package.
Visual Studio Installation
Microsoft provides a free version of Visual Studio, which also contains SQL Server and it can be downloaded from
Following are the steps for the installation.Step 1 − Once the downloading is completed then run the installer, then the following dialog box will be displayed.
Step 2 − Cpck on the Install button and it will start installation process.
Step 3 − Once the installation process is completed successfully, you will see the following dialog box.
Step 4 − Close this dialog box and restart your computer if required.
Step 5 − Now open Visual studio from the Start Menu which will open the following dialog. It will take some time for the first time for preparation.
Step 6 − Once all this is done, you will see the main window of Visual Studio.
NHibernate Package Installation
NHibernate is a mature, open source object-relational mapper for the .NET framework. It is actively developed, fully featured and used in thousands of successful projects. You can install NHibernate package with the following methods.
Direct Download
Download the zip from file from
which contains all the binaries that are required.Extract this zip file and include all these binaries in your project.
Install Using NuGet
Another way of instalpng NHibernate is to use NuGet to install the NHibernate package, which is by far the easiest way to incorporate NHibernate into a project.
It s going to download all the NHibernate dependencies and create references to all of the required assembpes.
To install NHibernate, run the following command in the Package Manager Console.
install-package NHibernate
You are now ready to start your apppcation.
Advertisements