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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:11:52+00:00 2026-05-26T16:11:52+00:00

I am trying to implement something similar to IntegerAboveThresholdAttribute except that it should work

  • 0

I am trying to implement something similar to IntegerAboveThresholdAttribute except that it should work with decimals.

This is my implementation of me using it as a BusinessException

[DecimalAboveThreshold(typeof(BusinessException), 10000m, ErrorMessage = "Dollar Value must be 10000 or lower.")]

However, I receive an error saying An attribute must be a constant expression, typeof expression, or array creation expression of an attribute parameter type. I was wondering if it is possible to fix this, and if not, is it possible to do something similar?

Here is the source code for DecimalAboveThresholdAttribute:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CoreLib.Messaging;

namespace (*removed*)
{
public class DecimalBelowThresholdAttribute : BusinessValidationAttribute
{
    private decimal _Threshold;

    public DecimalBelowThresholdAttribute(Type exceptionToThrow, decimal threshold)
        : base(exceptionToThrow)
    {
        _Threshold = threshold;
    }

    protected override bool Validates(decimal value)
    {
        return (decimal)value < _Threshold;
    }
}

}

I also would like to know if I can do this with DateTimes as well.

  • 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-26T16:11:53+00:00Added an answer on May 26, 2026 at 4:11 pm

    You are not allowed to use decimals as attribute parameters. This is a built in restriction in .NET attributes. You can find the available parameter types on MSDN. So it won’t work with decimal and DateTime. As a workaround (although it won’t be typesafe) you can use strings:

    public DecimalBelowThresholdAttribute(Type exceptionToThrow, string threshold)
            : base(exceptionToThrow)
        {
            _Threshold = decimal.Parse(threshold);
        }
    

    Usage:

    [DecimalAboveThreshold(typeof(BusinessException), "10000", ErrorMessage = "Dollar Value must be 10000 or lower.")]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement something similar to this or this . I've created a
I'm trying to implement something similar to what http://www.ancestry.com has, but I'm not sure
I'm trying to implement something like this: <div> <table> <thead> <tr> <td>Port name</td> <td>Current
Ok well I'm trying implement something similar to the 'undo' function in many image
I am trying to implement something similar to the flight control game. There will
I'm trying to implement something similar to a cart where you can drop items
I am trying to implement something similar to a functionality on Stack Overflow. On
Im trying to implement a voting system similar to stackoverflow and I have something
I'm trying to implement something similar to the iTunes browser, to browser a simple
I'm trying to implement something similar to Ruby on Rails' polymorphic relationships. I have

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.