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 749467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:26:17+00:00 2026-05-14T14:26:17+00:00

For a column of type varchar I could write such search query: public IList<Order>

  • 0

For a column of type varchar I could write such search query:

public IList<Order> GetByName(string orderName)
{
 using (ISession session = NHibernateHelper.OpenSession())
 {
  return session.CreateCriteria<Order>().
   Add(Restrictions.Like("Name", string.Format("%{0}%", orderName))).
   List<Order>();
 }
}

How do I implement the similar search query for a column that has a DateTime type?

public IList<Order> GetByDateTime(string str)
{
    using (ISession session = NHibernateHelper.OpenSession())
    {
        return session.CreateCriteria<Order>()
            .Add(Restrictions.Like(Projections.Cast(NHibernateUtil.String, Projections.Property("Created")),
                                    '%' + str + '%'))
            .List<Order>();
    }
}

That is, if the method is passed the date and part-time (eg “25.03.2010 19”), then displays all orders are carried out in this period of time:

25.03.2010 19:22:00

25.03.2010 19:44:00

25.03.2010 19:59:00

  • 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-14T14:26:17+00:00Added an answer on May 14, 2026 at 2:26 pm

    Just check if the date is within your desired range:

    DateTime beginDate = new DateTime(2010, 3, 25, 19, 0, 0);
    DateTime endDate = new DateTime(2010, 3, 25, 20, 0, 0);
    return session.CreateCriteria<Order>()
       .Add(Expression.Between("OrderDate", beginDate, endDate))
       .List<Order>();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Summary: I'm trying to write a text string to a column of type varchar(max)
Is there any concern about change my column type from text/ntext to varchar(max)/nvarchar(max)? Could
I have a SQL Server 2000 database with a column of type VARCHAR(255). All
I am having a column in my DB with varchar type having values in
From my experience I have learn that using an surrogate INT data type column
I need to know the column type in PostgreSQL (i.e. varchar(20) ). I know
I have a table as Student and there is a varchar type column as
I want to get table metadata for all table columns. Like type string(varchar2)/int/float/datetime and
What column type should I use for storing html content from a website with
I have a column type money in my sql server database, which is moneyAcumulated

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.