Commented 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 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 ArticleClosed 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 ArticleClosed 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 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 ArticleNew Post: Issue 130: Multiple Result Sets from Stored Procedure
I have a stored procedure that returns 2 result sets. I don't see any examples how to use this new functionality? Is there any documentation on this?
View ArticleNew Post: donation + some feature requests
Hello Simon, first of all, great work, best generator I've seen so far. Where can I donate? I've just a few questions/feature requests. As you already mentioned in previous posts, support for Oracle or...
View ArticleCreated Unassigned: GOT "NULL" for varchar DEFAULT NULL [156]
SQL---```SQLCREATE TABLE [dbo].[CC] ([Id] int NOT NULL IDENTITY(1,1) ,[Desc] varchar(MAX) NULL DEFAULT NULL ,[X1] varchar(255) NULL )GO-- ------------------------------ Indexes structure for table CC--...
View ArticleEdited Unassigned: GOT "NULL" instead of null for varchar DEFAULT NULL [156]
SQL---```SQLCREATE TABLE [dbo].[CC] ([Id] int NOT NULL IDENTITY(1,1) ,[Desc] varchar(MAX) NULL DEFAULT NULL ,[X1] varchar(255) NULL )GO-- ------------------------------ Indexes structure for table CC--...
View ArticleEdited Unassigned: Should get null instead of "NULL" for varchar DEFAULT NULL...
SQL---```SQLCREATE TABLE [dbo].[CC] ([Id] int NOT NULL IDENTITY(1,1) ,[Desc] varchar(MAX) NULL DEFAULT NULL ,[X1] varchar(255) NULL )GO-- ------------------------------ Indexes structure for table CC--...
View ArticleEdited Unassigned: Should get null instead of "NULL" for varchar DEFAULT NULL...
SQL---```SQLCREATE TABLE [dbo].[CC] ([Id] int NOT NULL IDENTITY(1,1) ,[Desc] varchar(MAX) NULL DEFAULT NULL ,[X1] varchar(255) NULL )GOALTER TABLE [dbo].[CC] ADD PRIMARY KEY ([Id])GO```but got ```C#//...
View ArticleUpdated Wiki: What's new
Whats coming in the next release:Case 156. Should get null instead of "NULL" for varchar DEFAULT NULL. Thanks toyyjdelete.Whats new in v2.16.1:Allow ColumnFilterExclude to target a specific...
View ArticleUpdated Wiki: Home
Project DescriptionReverse engineers an existing database and generates EntityFramework Code First POCO classes, DbContext and Configuration mappings. Works forSQL Server and SQL Server Compact 4.0...
View ArticleUpdated Wiki: Home
Project DescriptionReverse engineers an existing database and generates EntityFramework Code First POCO classes, DbContext and Configuration mappings. Works forSQL Server and SQL Server Compact 4.0...
View ArticleNew Post: Oracle database
Hi Phil, If you could add support for Oracle, that would be wonderful. A simple way to contribute would be to create a pull request, or alternatively email me the SQL parts as listed in...
View ArticleNew Post: Issue 130: Multiple Result Sets from Stored Procedure
Very little documentation, sorry. I've tried to make it as simple as possible, and the code as readable as possible. You should call your stored procedure as follows:using(var db = new MyDbContext()) {...
View ArticleNew Post: donation + some feature requests
Hi Mathias, Thanks for your kind words. and if you would like to donate, you can use this link. In answer to your questions/features:I'd love to add support for MySQL and PostgreSQL, and have them both...
View ArticleNew Post: donation + some feature requests
Actually, point 5 (case 147) was easier than I thought. This will be in the next release, see this changset.
View Article