New Post: Prevent generate navigation properties and collections
Hello! Is it possible to add settings to prevent generation on navigation properties and collections? It will be very useful for bounded context. For example I have a table Worker and almost all tables...
View ArticleNew Post: Prevent generate navigation properties and collections
I add a pull request https://efreversepoco.codeplex.com/SourceControl/network/forks/GraySerg/DisableGenerateReverseNavigation/contribution/8648
View ArticleClosed Unassigned: user defined table types for stored procedures are not...
see discussion at :https://efreversepoco.codeplex.com/discussions/645780Comments: Released in v2.17.2
View ArticleCommented Unassigned: user defined table types for stored procedures are not...
see discussion at :https://efreversepoco.codeplex.com/discussions/645780Comments: Hello, I still see the same problem with v2.17.2 the generated code for above stored procedure still returns an int...
View ArticleCommented Unassigned: Foreign key compile error - Duplicate anonymoous type...
I have the following Foreign key on a table in my DB:```ALTER TABLE [Ops].[FCMarketMapping] WITH CHECK ADD CONSTRAINT [FK_FCMarketMapping_markets] FOREIGN KEY([MarketId])REFERENCES...
View ArticleNew Post: Prevent generate navigation properties and collections
Thanks. I am considering whether or not this should be an exclude Regex instead. That way you can select which FK's to exclude, instead of all of them. See the following cases for more details155171
View ArticleSource code checked in, #c6f8eca1bde9
Prevent duplicate of "using System.Data.Entity.Infrastructure;"
View ArticleSource code checked in, #372d73b93443
Use correct case for table alias in case of case sensitive collation setting on database. Thanks to Luoti.
View ArticleSource code checked in, #7ad5214e5270
Use an @ Symbol if default contains a new line character.
View ArticleCommented Unassigned: user defined table types for stored procedures are not...
see discussion at :https://efreversepoco.codeplex.com/discussions/645780Comments: Hi, I'm experiencing the same issue. Please can the issue be reopened. Cheers, Andy
View ArticleNew Post: Navigation properties collection type
How I can generate IList navigation properties collection instead of ICollection? In my .tt file I have set CollectionType = "List", but navigation properties are generated as ICollection.
View ArticleNew Post: Navigation properties collection type
In EF.Reverse.POCO.Core.ttinclude, search for ICollection and change it to IList. There are two lines to change:Line 2600:ReverseNavigationProperty.Add(string.Format("public virtual...
View ArticleCreated Unassigned: ReadStoredProcReturnObject throws an exception if a...
Hi,The generated query used to work out the return model of a stored proc in invalid if it contains a user defined type.The tool generates the following query for a stored proc in my database:```SET...
View ArticleCommented Unassigned: ReadStoredProcReturnObject throws an exception if a...
Hi,The generated query used to work out the return model of a stored proc in invalid if it contains a user defined type.The tool generates the following query for a stored proc in my database:```SET...
View ArticleCommented Unassigned: ReadStoredProcReturnObject throws an exception if a...
Hi,The generated query used to work out the return model of a stored proc in invalid if it contains a user defined type.The tool generates the following query for a stored proc in my database:```SET...
View ArticleCommented Unassigned: user defined table types for stored procedures are not...
see discussion at :https://efreversepoco.codeplex.com/discussions/645780Comments: @mhwlng I've raised a separate issue for our specific case [173](https://efreversepoco.codeplex.com/workitem/173).
View ArticleCommented Unassigned: ReadStoredProcReturnObject throws an exception if a...
Hi,The generated query used to work out the return model of a stored proc in invalid if it contains a user defined type.The tool generates the following query for a stored proc in my database:```SET...
View ArticleNew Post: Add marker interfaces to certain POCO classes
I would like to be able to mark some of my generated POCOs with a marker interface that guarantees they implement a given property. For example;public interface IHasCode { string Code { get; } } //...
View Article