Base solution for your next web application

Activities of "orangeboy"

That did it! Thank you for your help!

Thanks for replying, ismcagdas.

I didn't change that class from the sample app:

using System.Reflection;
using Abp.EntityFramework;
using Abp.Modules;

namespace AbpEfConsoleApp
{
    //Defining a module depends on AbpEntityFrameworkModule
    [DependsOn(typeof(AbpEntityFrameworkModule))]
    public class MyConsoleAppModule : AbpModule
    {
        public override void Initialize()
        {
            IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly());
        }
    }
}
Showing 1 to 2 of 2 entries