Whats new in v1.9.0:
- It now has the ability to read connection strings from other config files/projects.
It starts by looking at the local project for the named connection string in the following files:- app.config
- web.config
- app.config.transform
- web.config.transform
- or edit the above list in the .tt and specify which file(s) to use
Whats new in v1.8.0:
- Can now optionally generate separate files. See the new boolean flag GenerateSeparateFiles.
- Removed the hard coded 300 second timeout. The timeout can be specified in the connection string.
Whats new in v1.7.1:
- Add support for DateTime2
- Add support for UnitOfWork and the repository pattern. This means you can now unit test your repositories. See the source code for examples.
- Add IDisposable to db context.
Whats new in v1.7.0:
- Add .HasPrecision(precision, scale) for fields that have scale. Thanks to @choudeshell
Whats new in v1.6.0:
- Enhance ReadSchema performance with early table exclusion.
- Now supports columns with symbols and punctuation.
- Handles decimal default values.
Whats new in v1.5.1:
- A bugfix for WCF. See issue https://efreversepoco.codeplex.com/workitem/4
Whats new in v1.5.0:
- Ability to add WCF(DataMember, DataContract attributes) support on Entity. Requested by spatemp
Whats new in v1.4.1:
- Foreign keys are only included if they point to a primary key.
Whats new in v1.4.0:
- If a field has a default contrainst of GetDate(), add DateTime.Now() in the ctor for the field.
- Add support for the datetimeoffset type, including support for the default constraint sysdatetimeoffset().
- Add Resharper naming comments.
- Mappings should be marked internal. Requested by Hobbes Pirakitti