C# POCO T4 template, generate interfaces?
- by Jonna
Does anyone know of any tweaked version of POCO T4 template that generates interfaces along with classes?
i.e. if I have Movie and Actor entities in .edmx file, I need to get the following classes and interfaces.
interface IMovie
{
string MovieName { get; set; }
ICollection<IActor> Actors { get; set; } //instead of…