since I excluded the "ID", how can I exclude another attribute?
Exclude accepts a comma separated list of attributes. When parsing, it also trims the inputs, so you can use spaces to make it more readable.
Example:
[Bind(Exclude="ID, Name")]
[Bind (Exclude = "ID, second")]
Try to separate the attributes you want to exclude with commas, for example
[Bind(Exclude="ID,Name")]