How to update just selected field in the passed ViewModel – Asp.net
I have a viewmodel to update data (from API, not view) with params like below: public string Name { get; set; } public string Email { get; set; } public string Phone { get; set; } i just want to…