29 Nisan 2015 Çarşamba

Model property doğrulama

            // Arrange
            var propertyInfo = typeof(TEntity).GetProperty("PropertyName");

            // Act
            var attribute = propertyInfo.GetCustomAttributes(typeof(RequiredAttribute))
                                        .Cast<RequiredAttribute>()
                                        .FirstOrDefault();

attribute null değilse PropertyName özelliği [Required]'dır

Hiç yorum yok:

Yorum Gönder

.net 6 mapget kullanımı

 app.UseEndpoints(endpoints => {     endpoints.MapGet("/", async context =>     {         var response = JsonConvert.Seriali...