Simon Hughes
Simon Hughes
Hi @MarkLFT Great question! I don't really have anything with regard to calling stored procs. All it does is return a new List ```c# public DbSet TenMostExpensiveProductsReturnModel { get; set;...
Actually, you can't replace all `return new {{ReturnType}}();{{#newline}}` as some just simply return a model, and not a List. You'll have to check the template for the one that returns...
Thanks Mark. Can you send me a small example of the code. Not sure what I can do about the filter code, other than tweaking the template, or having an...
Could you show me your stored procedure here. Just the basics of what I need to test this myself. And how you are calling it. Thanks.
Thanks @erwin-faceit I will investigate this.
Hi @erwin-faceit Could you grab the latest code for [EF.Reverse.POCO.v3.ttinclude](https://raw.githubusercontent.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/master/EntityFramework.Reverse.POCO.Generator/EF.Reverse.POCO.v3.ttinclude) and copy it over your `EF.Reverse.POCO.v3.ttinclude` file and that should fix this problem. I'll close this case, but if it...
hmm that is strange,
Hi @matt-neubert To do this, simply add the generator again to the Shared project, and copy your `.tt` settings from your current file. ### Shared project In the shared project...
Thanks. I didn't know Rider support visual studio extensions. Once EF Core is out of the way, I shall take a look.
Good progress so far. Got a version of the generator working for Rider yesterday. Problems: - Running T4 templates in Rider with folder names having spaces in them. - Heavily...