Is there a way I can have a generated code file like so:
public partial class A {
public string a {get; set;}
}
and then in another file:
public partial class A {
[Attribute("etc")]
public string a {get; set;}
}
So that I can have a class generated from the database and then use a non-generated file to mark it up?