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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T12:56:48+00:00 2026-06-11T12:56:48+00:00

In my database, v1 field is nullable field. but I define 0 (default) if

  • 0

In my database, v1 field is nullable field. but I define 0 (default) if the value is null.

public decimal? v1 {
  get {
    return this._v1; 
  }
  set {
    this._v1 = value ?? 0M;
  }
}

so now, the v1 is not nullable variable anymore.

but I can not do this,

decimal v2 = v1;

The error message say, Cannot implicitly convert type ‘decimal?’ to ‘decimal’.

In this case, Do I have to convert to decimal, like this?

decimal v2 = Convert.ToDecimal(v1);

It very annoying job. and codes are look dirty too.

Anyone know better solution? please advice me.

  • 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-11T12:56:49+00:00Added an answer on June 11, 2026 at 12:56 pm

    No you don’t have to convert the decimal?, you have access to the underlying value from the Nullable type e.g.

    decimal v2 = v1.Value;
    

    Assigning a default value to a Nullable type does not make it non-nullable, it just means it has a value. Nullable types have a HasValue property which helps you determine this.

    Just for the record, I wouldn’t recommend defaulting the value to 0 it would probably make more sense letting it default to null considering it can indeed be null. If you need to have a default value in your app you will probably want to use the GetValueOrDefault method e.g.

    decimal v2 = v1.GetValueOrDefault(0m);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Right now, I have a database field named 'PROCESS_FLAG' that contains the text value
I'm interested in finding the most precise decimal values in a database field. I'd
I have a database that accepts no null values and has a default for
If this is the way for hard-coded mapping for nullable and not nullable database
As I understand from this database design question , you should use nullable fields
I need to set a auto increment for a field in my table. This
My Sql Server database has some nullable nvarchar fields, and no nvarchar fields containing
I have a database field where I want to store my password. In a
How can I add a database field to the Magento global search? I want
I have Database with date field. I see the time like: 1900-01-01 13:38:00.000 How

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.