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

  • SEARCH
  • Home
  • 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 6545809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:37:52+00:00 2026-05-25T11:37:52+00:00

I would like to transform this piece of code to be used with QueryOver

  • 0

I would like to transform this piece of code to be used with QueryOver

       public IList<T> ListByCriteria( ICriteria criteria, int maxResult )
    {
        IList<T> ret = new List<T>();
        using (ITransaction tx = m_session.BeginTransaction(IsolationLevel.ReadCommitted))
        {
            try
            {
                ret = criteria
                    .SetMaxResults( maxResult )
                    .List<T>();

                tx.Commit();
            }
            finally
            {
                if (tx.IsActive)
                    tx.Rollback();
            }
        }
        return ret;
    }

to something like

    public IList<T> ListByQueryOver( Expression<Func<bool>> expression )
    {
        IList<T> ret = new List<T>();
        using (ITransaction tx = m_session.BeginTransaction(IsolationLevel.ReadCommitted))
        {
            try
            {
                ret = m_session.QueryOver<T>().Where( expression )
                    .List<T>();

                tx.Commit();
            }
            finally
            {
                if (tx.IsActive)
                    tx.Rollback();
            }
        }
        return ret;            
    }

but it doesn’t compile.
The error message states: “T must be a reference type in order to use it as parameter ‘T'” on QueryOver

Isn’t it possible to make this call generic?

What’s wrong?

Thank you, Stefano

  • 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-05-25T11:37:52+00:00Added an answer on May 25, 2026 at 11:37 am

    Try:

    public IList<T> ListByQueryOver( Expression<Func<T, bool>> expression ) where T : class, new()
    

    The where clause restricts T to reference types, and new requires a parameter-less constructor on the class. The QueryOver Where method requires an `Expression>’ parameter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi does anyone know what the xsl would look like to transform this XML.
I have a numeric string like this 2223,00 . I would like to transform
I'm using XSLT and would like to transform this: <attr> <header name=UpdateInformation1> <detail name=info>blah</detail>
I have this image... I would like to transform it perspective like this via
Would like to make anapplication in Java that will not automatically parse parameters used
Would like to know the c# code to actually retrieve the IP type: Static
I would like to transform my <input type=file id=image name=image> with something like @Html.UploadFor(model
I have the following code that uses a for loop and I would like
I have a piece of xml that looks like this: <root> <tag1>tractor</tag1> <tag2> <subtag1
I would like to transform/modify the content of dataframe. Basically I have a dataframe

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.