If you are using T4 code generation, the file Model1.Designer.cs is pretty useless. It's an empty file (no code in it) and header comment says following:
```
// Default code generation is disabled for model 'c:\users\mugdhak\documents\visual studio 2013\Projects\Net4Ef5\Net4Ef5\Model1.edmx'.
// To enable default code generation, change the value of the 'Code Generation Strategy' designer
// property to an alternate value. This property is available in the Properties Window when the model is
// open in the designer.
// If no context and entity classes have been generated, it may be because you created an empty model but
// have not yet chosen which version of Entity Framework to use. To generate a context class and entity
// classes for your model, open the model in the designer, right-click on the designer surface, and
// select 'Update Model from Database...', 'Generate Database from Model...', or 'Add Code Generation
// Item...'.
```
Another file, Model1.cs is empty too. Not sure if that is used anywhere.
This message saying "Default code generation is disabled " is very confusing when I already have code generated using tt files.
```
// Default code generation is disabled for model 'c:\users\mugdhak\documents\visual studio 2013\Projects\Net4Ef5\Net4Ef5\Model1.edmx'.
// To enable default code generation, change the value of the 'Code Generation Strategy' designer
// property to an alternate value. This property is available in the Properties Window when the model is
// open in the designer.
// If no context and entity classes have been generated, it may be because you created an empty model but
// have not yet chosen which version of Entity Framework to use. To generate a context class and entity
// classes for your model, open the model in the designer, right-click on the designer surface, and
// select 'Update Model from Database...', 'Generate Database from Model...', or 'Add Code Generation
// Item...'.
```
Another file, Model1.cs is empty too. Not sure if that is used anywhere.
This message saying "Default code generation is disabled " is very confusing when I already have code generated using tt files.