Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8405083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:45:37+00:00 2026-06-09T22:45:37+00:00

I wrapped Nhibernate session as the following. public interface IDalSession : IDisposable { void

  • 0

I wrapped Nhibernate session as the following.

public interface IDalSession : IDisposable
{
    void MarkForRollBack();
    void End();
    IDalSession Start();
    IDalSession StartWithTransaction();
    T Save<T>(T entity);
    T CreateQuery<T>(string query);
    //ISession GetHibernateSession { get; }
}

I really want to use QueryOver as my main query.
QueryOver API looks impossible to be wrapped because it is huge.
One solution is to use the NHibernate ISession (GetHibernateSession) in all of the places I need to pull data. but it is very ugliy.
What is the workaround here?
How can I wrap QueryOver?
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T22:45:39+00:00Added an answer on June 9, 2026 at 10:45 pm

    Is this what you mean?

        public interface IDalSession : IDisposable
        {
            void MarkForRollBack();
            void End();
            IDalSession Start();
            IDalSession StartWithTransaction();
            T Save<T>(T entity);
            T CreateQuery<T>(string query);
            IQueryOver<T,T> NewQueryOver<T>(); // check me out
            //ISession GetHibernateSession { get; }
        }
    
        ...
    
         public IQueryOver<T,T> NewQueryOver<T>()
            {
    
              return Session.QueryOver<T>();
            }
    

    You may get some comments about hiding away anything NH from other layers, so for that its fine to be able to pass back a new linq to NH query as its IQueryable:

     public virtual IQueryable<T> NewQuery<T>()
        {
          return Session.Query<T>();
        }
    

    but I personally prefer QueryOver API so I wrap my data access into concrete repositories. S#arp architecture does it nice:

    • Interface
    • Impl.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get a Wrapper from NHibernate with the following code: public Wrapper
I've wrapped my wcf client in a IDisposable wrapper and everything appears to work
Using EF DbContext wrapped in interface(s), dependency injected per web request, to make sure
I have the following situation: Three concrete service classes implement a service interface: one
I have an open Castle ActiveRecord SessionScope. I need to use the nhibernate session
Is there anyway to verify if a Session has been disposed of by NHibernate?
when deleting an entity in nhibernate i get an exception with this error message:
Is it possible to use something like this wrapper with fluent configuration? http://jeffreypalermo.com/blog/use-this-nhibernate-wrapper-to-keep-your-repository-classes-simple/ If
I wrapped a TextBlock in an InlineUIContainer inside a RichTextBox , its content is
I just wrapped up this responsive site and now it doesn't appear in IE9.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.