Commented Issue: DbContext: No new line after each property "public DbSet" [148]
When the tool generates a DBContext, it does not make new line after each property in it, so it will list all properties in one long line, e.g.: public DbSet<table1> table1s { get; set; } public...
View ArticleNew Post: DataAnnotations
So I implemented a version of data annotations. It is much simpler (though that is not necessarily a good thing) than the fork you linked to. I basically implemented a call back and used Writeline to...
View ArticleCreated Unassigned: Parameter generation fail to add precision and scale when...
If have a stored procedure like follow:```CREATE PROCEDURE [dbo].[proc_TestDecimalOutput] @PerfectNumber decimal(18,2) OUTPUTASBEGIN SET @PerfectNumber = 10.35;ENDGO```you will end-up with this...
View ArticleEdited Unassigned: Parameter generation fail to add precision and scale when...
If you have a stored procedure like follow:```CREATE PROCEDURE [dbo].[proc_TestDecimalOutput] @PerfectNumber decimal(18,2) OUTPUTASBEGIN SET @PerfectNumber = 10.35;ENDGO```you will end-up with this...
View ArticleNew Post: Stored Procedure Return Types not set to custom type for all stored...
I figured out the problem. It is SET FMTONLY ON SQL that queries the stored procedure for results. The problem is the effect FMTONLY has on the stored procedure. I added this to the top of the stored...
View ArticleNew Post: Stored Procedure Return Types not set to custom type for all stored...
Having conditional result sets will be impossible to map results to. Do you sometimes have 1 results set, or 2 or 3? Hard to manage, and ultimately results in messy coding. Having conditional result...
View ArticleNew Post: Stored Procedure Return Types not set to custom type for all stored...
I always have a single result from the stored procedure and that result is always of the same schema. Think about an if / then / else statement where each has a select statement with the same...
View ArticleNew Post: Stored Procedure Return Types not set to custom type for all stored...
Ah ha. Got it, fully understand now. That is a bit of a pickle. It's a shame FMTONLY comes back with two result sets and not one. For me, there are two solutions: Move the generated EF code-first code...
View ArticleNew Post: Oracle database
What would be involved in doing this? I have to support SQL Server and Oracle, so I could possibly help in this effort.
View ArticleCreated Unassigned: Add ability to filter foreign keys [155]
Some users would like to filter out foreign keys. This is necessary if the user moves some fields up into a base class by using WritePocoBaseClasses and UpdateColumn functions to set column.Hidden =...
View ArticleEdited Issue: Parameter generation fail to add precision and scale when using...
If you have a stored procedure like follow:```CREATE PROCEDURE [dbo].[proc_TestDecimalOutput] @PerfectNumber decimal(18,2) OUTPUTASBEGIN SET @PerfectNumber = 10.35;ENDGO```you will end-up with this...
View ArticleCommented Issue: Parameter generation fail to add precision and scale when...
If you have a stored procedure like follow:```CREATE PROCEDURE [dbo].[proc_TestDecimalOutput] @PerfectNumber decimal(18,2) OUTPUTASBEGIN SET @PerfectNumber = 10.35;ENDGO```you will end-up with this...
View ArticleUpdated Wiki: What's new
Whats coming in the next release:Allow ColumnFilterExclude to target a specific Table.Schema.Column by including escaped dots in regex:"^Table\.dbo\.column$". Thanks to Paul Lively.Added support for...
View ArticleUpdated Wiki: What's new
Whats new in v2.16.1:Allow ColumnFilterExclude to target a specific Table.Schema.Column by including escaped dots in regex:"^Table\.dbo\.column$". Thanks to Paul Lively.Added support for EF6 Migration...
View ArticleReleased: v2.16.1 (Nov 13, 2015)
Whats new in v2.16.1:Allow ColumnFilterExclude to target a specific Table.Schema.Column by including escaped dots in regex: "^Table\.dbo\.column$". Thanks to Paul Lively.Added support for EF6 Migration...
View ArticleCreated Release: v2.16.1 (Nov 13, 2015)
Whats new in v2.16.1:Allow ColumnFilterExclude to target a specific Table.Schema.Column by including escaped dots in regex: "^Table\.dbo\.column$". Thanks to Paul Lively.Added support for EF6 Migration...
View ArticleCommented Issue: Parameter generation fail to add precision and scale when...
If you have a stored procedure like follow:```CREATE PROCEDURE [dbo].[proc_TestDecimalOutput] @PerfectNumber decimal(18,2) OUTPUTASBEGIN SET @PerfectNumber = 10.35;ENDGO```you will end-up with this...
View ArticleSource code checked in, #b3f018683aa2
Case 154. Add precision and scale when using numeric parameters for stored procedures. Thanks to 0v3rCl0ck.
View ArticleEdited Issue: Parameter generation fail to add precision and scale when using...
If you have a stored procedure like follow:```CREATE PROCEDURE [dbo].[proc_TestDecimalOutput] @PerfectNumber decimal(18,2) OUTPUTASBEGIN SET @PerfectNumber = 10.35;ENDGO```you will end-up with this...
View Article