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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:24:01+00:00 2026-05-29T04:24:01+00:00

I have a property in a Model class something like: /// <summary> /// A

  • 0

I have a property in a Model class something like:

    /// <summary>
    /// A list of line items in the receipt
    /// </summary>      
    public ICollection<ReceiptItem> Items { get; set; }

Is there any way I can mark up this property to validate that the collection must have 1 or more members? I am trying to avoid a manual validation function call outside of ModelState.IsValid

  • 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-29T04:24:04+00:00Added an answer on May 29, 2026 at 4:24 am

    I ended up solving the problem by using a custom DataAnnotation — did not think to see if this could be done first!

    Here is my code if it helps anyone else!

    /// <summary>
    /// Require a minimum length, and optionally a maximum length, for any IEnumerable
    /// </summary>
    sealed public class CollectionMinimumLengthValidationAttribute : ValidationAttribute
    {
        const string errorMessage = "{0} must contain at least {1} item(s).";
        const string errorMessageWithMax = "{0} must contain between {1} and {2} item(s).";
            int minLength;
            int? maxLength;          
    
            public CollectionMinimumLengthValidationAttribute(int min)
            {
                minLength = min;
                maxLength = null;
            }
    
            public CollectionMinimumLengthValidationAttribute(int min,int max)
            {
                minLength = min;
                maxLength = max;
            }
    
            //Override default FormatErrorMessage Method  
            public override string FormatErrorMessage(string name)
            {
                if(maxLength != null)
                {
                    return string.Format(errorMessageWithMax,name,minLength,maxLength.Value);
                }
                else
                {
                    return string.Format(errorMessage, name, minLength);
                }
            }  
    
        public override bool IsValid(object value)
        {
            IEnumerable<object> list = value as IEnumerable<object>;
    
            if (list != null && list.Count() >= minLength && (maxLength == null || list.Count() <= maxLength))
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a cart model class that has a List property like so: public
I have an OrderForm domain class, which has property subclasses, something like: interface IOrderForm
My simplified domain model looks something like this: public abstract class Entity<IdK> { public
I have a model, Rating , which looks something like this: class Rating(models.Model): upvotes
I have an object model like this: public class Quantity { public decimal Weight
I have a ViewModel. something like this public class ViewModel { public int Id
With ASP.net MVC I have a Model like so: public class Project { public
In the world of MVC I have this view model... public class MyViewModel{ [Required]
I have a property on my view model that is a custom class with
Suppose I have this model: public class ViewModel { [Required] public string UserInput {

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.