Base solution for your next web application

Activities of "ismcagdas"

Hi,

Is MSDTC windows service is enabled and running on your machine ? If not, you must enable it.

Otherwise, can you check Logs.txt file under for web project for a detailed error message ?

Thanks.

Hi @alas,

We dont have your github username. If you can share your github username, we can invite you to private repository.

Hi,

You can start to server side. You must use AspNet Core version.

But I suggest you to wait for one more week, in that case you will not have to move your code to new project.

Hi,

Do you use any extension for your visual studio like resharper ?

Hi,

You can create an issue regarding your feature request on our github repository. We can discuss it there. <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues">https://github.com/aspnetzero/aspnet-zero/issues</a>

Hi,

No, because the code calls your controller action creates the UOW and it commits it. Can you send your project to <a href="mailto:[email protected]">[email protected]</a> ? Normally this should work as expected, I want to try it with your project ?

Hi,

You can also take a look at this document <a class="postlink" href="https://aspnetzero.com/Documents/Extending-Existing-Entities">https://aspnetzero.com/Documents/Extend ... g-Entities</a>

Hi,

You can think Host project like a web api without user interface. In most cases it is better to host your API seperate from your UI. Host project is actually created for angular2 version.

Core project is the project for keeping common things for both MVC and Host project. It is a base project for those two.

Please continue if there is something unclear.

Hi,

Lets continue here <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/issues/143">https://github.com/aspnetboilerplate/mo ... issues/143</a>.

Hi,

You can but you shouldn't. Web application should access the web.config, read the setting value and set it to somewhere. Then you can access it from your app project.

You can define a class like this.

public class SettingValues : ISettingValues, ISingletonDependency
{
    public string Value1 { get; set; }

    public string Value2 { get; set; }
}

create it in your web module's post initialize method (IocManager.Resolve<SettingValues>()) and set the values from web.config. Then you can inject it in your app project and get the values from this class.

Showing 11711 to 11720 of 12747 entries