Asp.net boilerplate is a template to build enterprise data-driven solutions. And with Entity Framework integration, you certainly need to get SQL Server installed for it to work. When the template is executed, it tries to create tables automatically on SQL Server for you. So if there's no SQL server installed, you can't use it at all.
Since you are a newbie to ASP.NET, I recommend that you build yourself up by starting with basic asp.net programming and other .NET technologies. It is not advisable to take up asp.net boilerplate as a newbie to asp.net as you will get frustrated because of the code practices it was built with.
Good luck.
I downloaded a template a couple of weeks ago and selected the MVC & Jquery Option. But now I want to use AngularJS with it. I don't wanna have to download a fresh project and rewrite all the code I added to the previous one. How can I easily add AngularJS to my project? I searched for abp.AngularJS but didn't find anything like that.
Please help.
Hi,
Thanks for your response. While waiting for a response to my questions, I figured it out after several of hours of trials and studying the framework several times over. However, I'm now stuck with triggering events (email notifications) through EventBus For changes with some entities. I guess my issue is implementing an email service to handle the notification events. I didn't see clear examples to guide me in the documents on the website. You think you can put me through or I would have to create a fresh thread for this question?
Thanks.
I discovered ABP a few days ago After searching for tools to help my Enterprise Application Development. I went through the samples and documentation and realized I just found what I needed. The N-layered structure and the DDD model is amazing. Even though I don't have so much experience in that area, ABP has brought me up to speed a bit.
My question based on the topic is how to write a method to get an entity by an enum property through (IRepository) as used in the samples. I thought of using DB contexts but I think it goes against the best practices as I didn't see you do that in your samples.
With a model A, Having an Enum property, and another model B in which the enum property of A is a a foreign key, I would want to set that field in B's constructor so when creating a new entity, it is automatically added. My problem is where and how to write the method (GetByEnum) that will help me achieve what I want.
I hope you understand my question. Thanks.
I discovered ABP a few days ago After searching for tools to help my Enterprise Application Development. I went through the samples and documentation and realized I just found what I needed. The N-layered structure and the DDD model is amazing. Even though I don't have so much experience in that area, ABP has brought me up to speed a bit.
My question based on the topic is how to write a method to get an entity by an enum property through (IRepository) as used in the samples. I thought of using DB contexts but I think it goes against the best practices as I didn't see you do that in your samples.
With a model A, Having an Enum property, and another model B in which the enum property of A is a a foreign key, I would want to set that field in B's constructor so when creating a new entity, it is automatically added. My problem is where and how to write the method (GetByEnum) that will help me achieve what I want.
I hope you understand my question. Thanks.