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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:40:24+00:00 2026-05-11T22:40:24+00:00

If I’m working with, say, a BookID of type int in my code that

  • 0

If I’m working with, say, a BookID of type int in my code that corresponds to an int primary key field in a database table (I’m using C# and SQL Server)… is it best practice, when I’m passing around IDs in my code, to use a nullable int and check for null to see if the BookID exists:

if (BookID != null) {

or, is it a better practice to assign an integer value (such as 0 or -1) that cannot correspond to an actual value in the db:

if (BookID > 0) {

EDIT:
For further clarification, suppose I only want to return the ID of the book, instead of the whole book object. In the db, the primary key is non-nullable, but if I were to perform a query for the BookID of ‘my book title’ that didn’t exist, then I would get no results. Should this be reflected as null?

Example:

BookID = GetBookID("my book title");
  • 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-11T22:40:24+00:00Added an answer on May 11, 2026 at 10:40 pm

    If you have a value that allows null in the database, you should use Nullable<T> and avoid introducing Magic Numbers. But if BookId is a (primary) key, it should probably not be nullable (besides it is used as a foreign key).

    UPDATE

    For the point of querying the database and not finding a matching record, there are several solutions. I prefer to throw an exception because it is usually an indication of an error if the application tries to get a record that does not exist.

    Book book = Book.GetById(id);
    

    What would you do in this case with a null return value? Probably the code after this line wants to do something with the book and in the case of null the method could usually do nothing more then

    1. throwing an exception that could be better done in GetById() (besides the caller might have more context information on the exception)
    2. returning immidiatly with null or an error code that requires handling by the caller, but that is effectivly reinventing an exception handling system

    If it is absolutly valid, not to find a matching record, I suggest to use the TryGet pattern.

    Book book;
    if (Book.TryGetById(out book))
    {
        DoStuffWith(book);
    }
    else
    {
        DoStuffWithoutBook();
    }
    

    I believe this is better then returning null, because null is a kind of a magic value and I don’t like to see implementation details (that a reference type or a nullable value type can take the special value named null) in the business logic. The drawback is that you lose composability – you can no longer write Book.GetById(id).Order(100, supplier).

    The following gives you the composability back, but has a very big problem – the book could become deleted between the call to Exists() and GetById(), hence I strongly recommend not to use this pattern.

    if (Book.Exists(id))
    {
        Book book = Book.GetById(id).Order(100, supplier);
    }
    else
    {
        DoStuffWithoutBook();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have a French site that I want to parse, but am running into

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.