Base solution for your next web application

Activities of "apexdodge"

I'm getting the same error. Can't seem to figure this one out.

I figured out the issue -- we need to have at least 1 tenant.

When I had the issue, I was getting No Results even on a simple _userRepository.GetAllList() which made no sense since I had multiple users in that table.

I went ahead and created a single Tenant in the tenant table with Id = 1 and now I'm setting all my Users to have TenantId = 1.

Worked after that.

Answer

I think if you do ID instead of Id, then you're not following conventions and code-first won't know what to map unless you specify with a [ForeignKey("ClientID")] attribute, etc etc.

But boilerplate takes care of Ids for you if your data model inherits from Entity<long>, I'm pretty sure. Why not do that?

Answer

Great to hear. Thanks so much for your hard work and effort.

Answer

This isn't really ASP.NET Boilerplate specific, but just a generic asp.net mvc question. There are tons of resources on the web that demonstrate how to upload files.

Personally, I use a service to handle this called Filepicker. Worth checking out here: <a class="postlink" href="https://www.filepicker.com/">https://www.filepicker.com/</a>

Nope, my bad!

For anyone who runs into a similar problem, you need to enable MultiTenancy in your WebModule file like this:

<a class="postlink" href="http://i.imgur.com/Gb2TCmO.png">http://i.imgur.com/Gb2TCmO.png</a>

Hope that helps.

Found it!

The attribute is [DisableAuditing]

You're the best, thanks so much

If I were you, I would just keep things simple and do Visual Studio Web Deploys to Azure Websites and use Azure Sql. Treat it like any normal web app.

I think what you are trying to achieve is different than what abp.ui.setBusy() offers. I would google for "Angularjs Page Transitions" and see if anything comes up of use.

Showing 1 to 10 of 18 entries