Jeremy Cook

Results 12 comments of Jeremy Cook

@china-live if you are still interested in this please take a look at the "OrchardCore" section https://github.com/OrchardCMS/OrchardCore.Samples/blob/master/MultiTenantApplication/appsettings.json and how it has CustomTitle and CustomSetting properties. Then take a look at...

If the question is "should we upgrade from net5.0 to net6.0?" my answer would be yes. If the question is should we drop Startup.cs and move that configuration into Program.cs...

After thinking about this more I feel like conforming to the new .NET 6 way of having moving startup into Program.cs makes a lot of sense for Orchard Core framework...

Hi @aukgit I was not involved with the video and don't maintain this repo. I'm just some guy that contributed a pull-request that was based on that video. Your best...

I just created the Setup ASP.NET MVC 5 project page at https://github.com/devbridge/BetterCMS/wiki/Setup-ASP.NET-MVC-5-project based on the Setup ASP.NET MVC 4 project page. I mistakenly thought GitHub would fork the wiki to...

I am all for storing or calculating a list of tables, but here's a thought on what might be a simpler approach and depending on how you interpret "consistent" here,...

As much as I like the uniformity of requiring a prefix. I also like tables without prefixes when there will only be one tenant per database. So tracking generated tables...

Thanks @Eltargrim. I think I now understand the problem I'm experiencing. Like most ASP.NET MVC (Core) developers I load my scripts in the following order: * jquery.js * jquery.validate.js *...

I'm sure you're right that it is related to some difference between EF core 5 and 6. I meant to also include that I upgraded to .net 6 and EF...

For completeness here are the Npgsql EF Core 6.0 instructions for [Migrating columns from timestamp to timestamptz](https://www.npgsql.org/efcore/release-notes/6.0.html#migrating-columns-from-timestamp-to-timestamptz).