I want to complete this code step by step to add an image as byte array in an userprofile as profile pic of every user. What I have so far:
[Table("UserProfile")]
public class UserProfile
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int UserId { get; set; }
public string UserName { get; set; }
public byte[] Image { get; set; }
}
Now how to complete code for controler? How to complete code for view? How to complete code for edit view?
Thanks if someone have the time to help me.