I have a column inside my sql server 2008 wih type of Decimal(18,2). But on entity framework what is the best data annotation validation I can apply to this pro
Decimal(18,2)
Im using almost excplusively (b/c it's simple and works)
[Range(typeof(decimal), "0", "1")] public decimal Split { get; set; }
Then if I need to convert back to double I add a conversion
(double)model.Split