Commented Feature: Option to generate data annotations [20]
Add ability to generate data annotations. Add this as an option in the .tt file. Requested by SergioRiusComments: This feature [added in my...
View ArticleNew Post: how can i disable CodeGeneratedAttribute feature?
Hello, I need to disable CodeGeneratedAttribute generation in my project. how can i do this?
View ArticleNew Post: how can i disable CodeGeneratedAttribute feature?
in EF.Reverse.POCO.Core.ttinclude, change string CodeGeneratedAttribute = "[GeneratedCodeAttribute(\"EF.Reverse.POCO.Generator\", \"2.12.1.0\")]"; to string CodeGeneratedAttribute = "";
View ArticleNew Post: how can i disable CodeGeneratedAttribute feature?
in the next version (2.12.2) i have greatly reduced the amount of CodeGeneratedAttribute
View ArticleNew Post: Code Library and script folder
It was originally nuget driven, but quickly realised that this is the wrong way for this application as you can only install 1 nuget package per projects. You may want to include this reverse generator...
View ArticleNew Post: The way to choose objects included in the model
I have seen your pull request, and will include it in future versions. I have to go slowly and carefully so I don't break anything. Thanks for this.
View ArticleNew Post: Cannot add the new item Reverse Poco to my project.
That's odd, what is your version of visual studio ? The manifest for the vsix enables it for the following:<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Pro" />...
View ArticleNew Post: Cannot add the new item Reverse Poco to my project.
SimonI am running VS2012 V4.5.51209 with your software 2.10.2.I haven’t been back to it in a while but I’ll keep it in mind.CheersCharlie
View ArticleReviewed: v2.12.1 (Apr 18, 2015)
Rated 5 Stars (out of 5) - Very fast efficient plug-in, and very good configuration options.
View ArticleNew Post: how can i disable CodeGeneratedAttribute feature?
This works. But an empty line above each property in POCOs creates.
View ArticleNew Post: pk as internal set
Pk is like internal set in the last version in a entity (it was ok some versions before). I'm not sure why it was created with internal. It is a Identity column but it is in a many to many relation so...
View ArticleCreated Unassigned: Stored procedure return column name tidy up could bring...
Latest EF.Reverse.POCO.Generator has a code snippet to tidy up stored procedure's return column name, here is code: proc.ReturnColumns = ds.Tables[0].Columns.Cast<DataColumn>().ToList();// Tidy...
View ArticleEdited Unassigned: Stored procedure return column name tidy up could bring...
EF.Reverse.POCO.Generator has a code snippet to tide up stored procedure's return column name, here is code: proc.ReturnColumns = ds.Tables[0].Columns.Cast<DataColumn>().ToList();// Tidy up...
View ArticleCreated Unassigned: SP in custom schema fix [108]
Hi,There is an bug to call a SP in custom schemaI create a path for it that attached here.andThis change in main .tt file Func<StoredProcedure, string> WriteStoredProcReturnModelName = sp =>...
View ArticleEdited Issue: SP in custom schema fix [108]
Hi,There is an bug to call a SP in custom schemaI create a path for it that attached here.andThis change in main .tt file Func<StoredProcedure, string> WriteStoredProcReturnModelName = sp =>...
View ArticleSource code checked in, #238357920a43
Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2
View ArticleSource code checked in, #477ba9ea0201
Remove use of CodeGeneratedAttribute where not necessary.
View ArticleEdited Issue: SP in custom schema fix [108]
Hi,There is an bug to call a SP in custom schemaI create a path for it that attached here.andThis change in main .tt file Func<StoredProcedure, string> WriteStoredProcReturnModelName = sp =>...
View ArticleCommented Issue: SP in custom schema fix [108]
Hi,There is an bug to call a SP in custom schemaI create a path for it that attached here.andThis change in main .tt file Func<StoredProcedure, string> WriteStoredProcReturnModelName = sp =>...
View Article