You can add a property to the code:
public partial class MyEntity { public String MyCustomProperty { get; set; } }
Entity Framework generates partial classes that allow you to customize the generated class.
Also, in order to comment on your code, I think it should change it to something like this:
MyEntities svc = new MyEntities(url);
This will ensure that your object is properly initialized.
source share