You can also use Column comments directly in the model property. If repeating the string is a problem for you, extract it into a common const
const string usernameDescription = "This is the username";
[Comment(usernameDescription)]
[Description(usernameDescription)]
public string Username { get; set; }