Good day!
Using the classes from the post ASP.NET Web Forms Project Using Dapper ORM with Dapper ORM features, this article demonstrates on how to use them in an ASP.NET MVC Project. I made some changes in Customer.cs class by applying DataAnnotations attributes such as Display and DisplayFormat.
Code:public class Customer { public int CustomerID { get; set; } [Display(Name="Company Name")] public string CompanyName { get; set; } [Display(Name = "Address")] public string Address { get; set; } [Display(Name = "City")] public string City { get; set; } [Display(Name = "State")] public string State { get; set; } [Display(Name = "Intro Date")] [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)] public DateTime IntroDate { get; set; } [Display(Name = "Credit Limit")] [DisplayFormat(DataFormatString = "{0:n2}")] public decimal CreditLimit { get; set; } }
Source code: ASP.NET MVC Dapper (Github)
Regards,





Reply With Quote