The current configuration of the Entity Framework does not currently support minimum or minimum values, just the length.
You can, however, perform the check this way, via annotations:
[Range(1, int.MaxValue, ...)]
int YourInt{ get; set; }
But this will only be associated with verification during saving, and not with the actual restriction added to the database, as it would be with a quick configuration / migration.
PS
Entity Framework, . , . , , EF.
, ( ) . , , EF , .