Hi,
This is the default behaviour of metronic. In order to make a menu item open, we need to add "open" css class to list item. If we do that, menu item is automatically colored.
If you want to change this behaviour, you can use "open" css class instead of "active". But you need to assign "active" css class to selected list item and change the background color for "open" css class to transparent or white.
Hi,
It's mentioned in the issue actuallay
Configuration.UnitOfWork.Timeout = TimeSpan.FromMinutes(1);
But in order to insert that much records at once it's better not to use Entity Framework directly if you need performance. You can use custom sql in a custom repository.
Hi,
You can create a configuration class and give it to your dbContext using DbConfigurationType attribute.
[DbConfigurationType(typeof(MyDbConfiguration))]
public class MyDbContext : AbpZeroDbContext<Tenant, Role, User>
{
.....
}
Hi,
Can you change
[DependsOn(typeof(AbpEntityFrameworkModule))]
to
[DependsOn(typeof(AbpZeroEntityFrameworkModule))]
Hi,
We couldn't reproduce the problem, please send your project via email to <a href="mailto:[email protected]">[email protected]</a>. If your project contains confidential information, we will try to find another solution.
Hi,
If you explain what you want to achive, maybe we can figure something out.
Hi,
Does this happens often ? I'm not sure but I think this happens if there are some logs written to logs file after you click the download button.
Can you try to do this only when you are the active user of the system.
Hi,
Thank you for your detailed explanation. First thing comes to my mind is a missing module dependency.
Can you sahre your MyConsoleAppModule class as well ?
Hi,
Typescript generator was a community contribution, you can ask help for your error in this issue <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/pull/813">https://github.com/aspnetboilerplate/as ... e/pull/813</a>.
Hi,
Does IListValuesRepository implements IRepository ?