I would like some help adding in a POCO .tt Entity Framework template Attributes to support WCF serialization and if its possible how to add namespace usings to each entity.
Thank you.
|
I would like some help adding in a POCO .tt Entity Framework template Attributes to support WCF serialization and if its possible how to add namespace usings to each entity. Thank you.
| |||
|
feedback
|
|
You need to open your Locate these lines of code (line 34, in my case):
Just before this line here:
you need to add the
to your template. Next, locate this line of code:
Before that line, add the
This will add those attributes for all entities and all properties - that might not be what you really want, but it's a start. Also: to finish off, you probably want to have a look at the
| |||||||||||||||||
feedback
|