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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:13:36+00:00 2026-05-25T22:13:36+00:00

This one has me stumped and thought I would pose it to the SO

  • 0

This one has me stumped and thought I would pose it to the SO community for help.

A user wants to select all orders that start with a certain ID, example:

123 would return 123, 12345, 1238790, etc. ID is an int column however.

I’m using nHibernate and my line currently is:

criteria.Add(Restrictions.Eq("Id", itemId));

but that’s only going to return me 123. I can do a Restrictions.Like, but that converts to a SQL LIKE clause and that won’t work on an int col.

Any ideas?

EDIT: Sorry, the DB is SQL Server 2008

  • 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-25T22:13:36+00:00Added an answer on May 25, 2026 at 10:13 pm

    Unfortunately, you didn’t specify what database you’re using (SQL is just the query language….), but if you’re on SQL Server (the Microsoft RDBMS product), then you could create a computed column of type VARCHAR(15) to hold a string representation of your INT, and then just search on that….

    ALTER TABLE dbo.YourTable
       ADD IdAsString AS CAST(Id AS VARCHAR(15)) PERSISTED    -- PERSISTED might not work - depending on your version of SQL Server
    
    SELECT (list of columns)
    FROM dbo.YourTable
    WHERE IdAsString LIKE '123%'
    

    Whether that really makes business sense, is a totally different story….. (I agree with Oded and Matt Ball…)

    But since that’s a string column now, you should be able to use your Restrictions.Like approach in NHibernate as you mention.

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

Sidebar

Related Questions

So this one has me stumped; hopefully a kind soul can help me out.
This one has me stumped. #!/bin/ksh AWKSCRIPT='END { print all done; }' OUTPUT=`echo hello
This one has me stumped. Is it possible at all to change the background
This one has me stumped. I'm writing an iPhone app that tracks bus schedules.
Thank you for any help. This one has me stumped. We start with this:
This one has stumped me. If you have two select tags (see this demo
This one has me stumped. I've got a java.sql.ResultSet and I'm pulling string values
This one has me stumped. <div id=container> <div id=store></div> <div id=contact></div> </div> I'm looking
This one has me stumped. Here are the relative bits of code: public AgencyDetails(Guid
This one has me kind of stumped. I want to make the first word

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.