Updated Wiki: What's new
Whats new in v2.12.2:Remove use of [GeneratedCodeAttribute] where not necessary. Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2. Case 109. Nullable uniqueidentifier...
View ArticleReleased: v2.12.2 (Apr 25, 2015)
Whats new in v2.12.2:Remove use of GeneratedCodeAttribute where not necessary. Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2.Case 109. Nullable uniqueidentifier with...
View ArticleCreated Release: v2.12.2 (Apr 25, 2015)
Whats new in v2.12.2:Remove use of GeneratedCodeAttribute where not necessary.Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2.Case 109. Nullable uniqueidentifier with...
View ArticleClosed 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 ArticleClosed Issue: Stored procedure return column name tidy up could bring all...
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 ArticleClosed Feature: Add support for async methods [106]
I added to the interface the following: I have attached the changes.``` Task<int> SaveChangesAsync(); Task<int> SaveChangesAsync(CancellationToken cancellationToken);```Comments: Released...
View ArticleClosed Issue: Nullable uniqueidentifier with default value generates...
A table with a column having a nullable uniqueidentifier with a default value NULL:[MyColumn] UNIQUEIDENTIFIER CONSTRAINT [DF_MyColumn] DEFAULT (NULL) NULLwill result in a Poco having the following...
View ArticleCreated Unassigned: SP failed [110]
Hi,This line in EF.Reverse.POCO.Core.ttinclude, remove Stored Procedure with no output!return storedProcs.Where(sp => sp.ReturnColumns.Any(c => !c.ColumnName.Contains(" "))).ToList();
View ArticleEdited Issue: SP failed [110]
Hi,This line in EF.Reverse.POCO.Core.ttinclude, remove Stored Procedure with no output!return storedProcs.Where(sp => sp.ReturnColumns.Any(c => !c.ColumnName.Contains(" "))).ToList();
View ArticleSource code checked in, #7c5d42bbcc14
Case 110. Do not remove stored procedure where it has no return fields.
View ArticleEdited Issue: SP failed [110]
Hi,This line in EF.Reverse.POCO.Core.ttinclude, remove Stored Procedure with no output!return storedProcs.Where(sp => sp.ReturnColumns.Any(c => !c.ColumnName.Contains(" "))).ToList();
View ArticleCommented Issue: SP failed [110]
Hi,This line in EF.Reverse.POCO.Core.ttinclude, remove Stored Procedure with no output!return storedProcs.Where(sp => sp.ReturnColumns.Any(c => !c.ColumnName.Contains(" "))).ToList();Comments:...
View ArticleReleased: v2.12.3 (Apr 25, 2015)
Whats new in v2.12.3:Remove use of GeneratedCodeAttribute where not necessary. Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2.Case 109. Nullable uniqueidentifier with...
View ArticleUpdated Release: v2.12.3 (Apr 25, 2015)
Whats new in v2.12.3:Remove use of GeneratedCodeAttribute where not necessary.Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2.Case 109. Nullable uniqueidentifier with...
View ArticleUpdated Wiki: What's new
Whats new in v2.12.3:Remove use of [GeneratedCodeAttribute] where not necessary. Case 108. Include the schema when calling stored procedures. Thanks to emdadgar2. Case 109. Nullable uniqueidentifier...
View ArticleClosed Issue: SP failed [110]
Hi,This line in EF.Reverse.POCO.Core.ttinclude, remove Stored Procedure with no output!return storedProcs.Where(sp => sp.ReturnColumns.Any(c => !c.ColumnName.Contains(" "))).ToList();Comments:...
View ArticleSource code checked in, #c63841ebe691
Removed "internal set" for stored generated fields
View Article