Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "daws"

For executing SP with user defined tables, i use this package on sql server. <a class="postlink" href="https://github.com/Fodsuk/EntityFrameworkExtras">https://github.com/Fodsuk/EntityFrameworkExtras</a> #446@d867302f-819f-44ef-9a53-cebedb5ada2e

Hi :D

I have a console application which needs to call several different repository.GetAllListAsync() methods. I'm trying to get the different calls to run in parallel with Task.WaitAll in my main method.

However, since all repositories share the same context, I get the following error: "A second operation started on this context before a previous asynchronous operation completed.".

Is there a way for my console application to run each GetAllListAsync() call in parallel ?

Thanks

I've investigated the ODATA sample (on github); using Power BI Tools from Microsoft Office.

Using ODATA v4 with powerview/powerpivot allow us to make great reports with excel.

I'll look more into this on next month.

Sampath, maybe you could see if it fits your needs.

Hi there !

I was using resx files to maintain all my translation in an excel file easily. (copy/paste from the column) Since I convert it to xml files to use the dblanguagemanagement; it's a little bit difficult to easilty to maintain xml files for all languages. (thousands of entries for each 10 distinct languages)

Does anybody have a software to map an xml file fields or import/export csv/excel to a specific xml output ? I'll look further this afternoon, if you don't have any in mind :D

Have a nice day all ! ;)

Hi !

Is there any way to get the information if a user is logged in, in javascript without using "abp.services.app.session.getCurrentLoginInformations" ?

I would like to get the same top/right user section from Dashboard, on another SPA which could be accessible for public & authenticated user.

if not logged in, i'll include "login" link. if logged in, i'll display the menu.

in aspnetzero, this module in home page is from a mvc view with @model; i try to avoid the model, since my home controller return directly an angular page and not an mvc view, so i can't have the model with infos.

thks !

Thanks for response, i'll go for a temporary hybrid solution ;)

Do you plan to convert libs folder to bower in the future or will it stay like now forerever for compatibility issues ?

Hello there !

My current project was developped with the default aspnet abp Template. I've successfully converterted all my projects to match the aspnetzero Template, except for the web project.

In ASP ABP (public Template), all scripts (like jQuery) are in /Scripts, and managed by nuget packages. In ASPNETZERO, it's located in /libs/ and do not use nuget packages.

Related to these infos :

  • how do you easily update aspnetzero Template on latest nuget (jQuery & other stuff); or do you replace all files by hand ? (I see that some js files libs are not the latest version)
  • is it best to get rid of theses nuget (js lib) to match the aspnetzero Template ?

I can understand that it's for compatibility/stability reason (to avoid update if there is some breaking changes), but i thought that jQuery based on nuget package was easier to update.

thks for your thoughts !

Answer

IN ABP, <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Zero/Tenant-Management">http://aspnetboilerplate.com/Pages/Docu ... Management</a>

TenancyName: This is unique name of a tenant in the application. It should not be changed normally. It can be used to allocate subdomains to tenants like 'mytenant.mydomain.com'. Tenant.TenancyNameRegex constant defines the naming rule.

In ASP.NET Zero documentation, there is some explaination. <a class="postlink" href="http://aspnetzero.com/Documents/Development-Guide#using-tenancy-name-as-subdomain">http://aspnetzero.com/Documents/Develop ... -subdomain</a>

I think that's just a matter of url/ip redirection.

Hi there,

for ICreationAudited, it creates "CreationTime" with DateTime type.

Is there any plan to convert theses interfaces to DateTimeOffset ? since my app will be deployed on serveral timezones it could be good to manage time data from one database to another one.

note : maybe related <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/40">https://github.com/aspnetboilerplate/as ... /issues/40</a>

For Stored procedure in SQL Server, i use this nuget <a class="postlink" href="https://www.nuget.org/packages/EntityFrameworkExtras.EF6/">https://www.nuget.org/packages/EntityFr ... xtras.EF6/</a>

and place my call to SP into my datalayer (custom repository)

Showing 81 to 90 of 127 entries