Rodrigão
Rodrigão

Reputation: 91

Set a constraint for minimum int value

I am using the Repository pattern. I have a entity called Product and I want to set the minimum value for price to avoid zero prices. Is it possible to create it in a EntitytypeConfiguration class?

My product configuration class

 public class ProductConfiguration : EntityTypeConfiguration<Product>
 {
    public PlanProductConfiguration(string schema = "dbo")
    {
        ToTable(schema + ".Product");
        HasKey(x => new { x.IdProduct });

        Property(x => x.Price).HasColumnName("flt_price")
                              .IsRequired()
                              .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
   }
}

Upvotes: 9

Views: 22251

Answers (3)

abatishchev
abatishchev

Reputation: 100366

Rather than attributes-based validation I recommend to use Fluent Validation which:

  • uses expressive lambda expressions
  • can be kept in other assembly than the models
  • doesn't polute POCOs with unrelated code

Upvotes: 3

Colin
Colin

Reputation: 22595

For server side validation, implement IValidatableObject on your entity. For client-side validation, if you are using MVC, add the data annotation to your view model. And to add a database constraint, add the check constraint by calling the Sql() method in a migration.

Upvotes: 2

tophallen
tophallen

Reputation: 1063

If you want that constraint, you can't apply it via EF configurations, but you can apply it using the check see here on the database directly, or you can apply data annotations on the model see this SO post

Something like:

[Range(0M, Double.MaxValue)]
public double Price { get; set; }

However that won't make a difference if you are using a view model, as those validations are only applied on ASP.NET object creation(generally when creating an instance from a web request into a controller), so when you create an instance you don't have to obey the attributes, so if you want to firmly validate it you need to apply a custom getter and setter rather than auto-properties, something like:

public class Product
{
    private double _price;

    [Range(0M, Double.MaxValue)]
    public double Price {
        get {
           return _price;
        }
        set {
            if (value <= 0M) {
                throw new ArgumentOutOfRangeException("value",
                        "The value must be greater than 0.0");
            }
            _price = value;
        }
    }
}

This will work fine in EF, so long as you don't have invalid data in the database.

Upvotes: 7

Related Questions