Base solution for your next web application

Activities of "verrrrrrrrrrrrrdi"

Question

Hi,

How to add custom field to auditLog and save the custom value ? can you share a step by step solution ?

Question

Hi,

How to use multiple database on multiple db context ? DbContextA - DatabaseA DbContextB - DatabaseB

I'm using ASP.Net MVC 5 + Angularjs 1.x

Please help

Question

Hi,

I run angular via ng serve but it show err msg "Internal Server Error", i think it's because nswag keep request services proxies. I don't run web.host project in asp.net core solution. I have separated team focus on Front End using angular and Back End using asp.net Core. how can i run angular decoupled with asp.net core project in development time ?

Question

Hi,

Can we run aspnetzero template with : Project Type: ASP.Net Core & Angular Framework: .Net Framework 4.6.1

please advise..

Question

Hi,

I have 2 dbcontext .

FirstDbContext

public class FirstDbContext : AbpZeroDbContext<Tenant, Role, User>
        {
            public virtual IDbSet<ModelA> ModelAs { get; set; }
        }

        public FirstDbContext()
            : base("Default")
        {

        }

        public FirstDbContext(string nameOrConnectionString)
            : base(nameOrConnectionString)
        {

        }

        public FirstDbContext(DbConnection existingConnection)
           : base(existingConnection, false)
        {

        }

        public FirstDbContext(DbConnection existingConnection, bool contextOwnsConnection)
            : base(existingConnection, contextOwnsConnection)
        {

        }

SecondDbContext

public class SecondDbContext : AbpZeroDbContext
        {

            public virtual DbSet<ModelB> ModelAs { get; set; }
        }

        public SecondDbContext()
            : base("SecondDbContext")
        {

        }

When i use linq to join model a and model b like this:

var q = (from a in _modelA.GetAll()
                     join b in _modelB.GetAll()
                     on a.modelCode equals b.modelCode
                     select a).ToList();

I has implement new EF transaction strategy in myProjectDataModule like this:

Configuration.ReplaceService<IEfTransactionStrategy, DbContextEfTransactionStrategy>(DependencyLifeStyle.Transient);

It show error message : The transaction passed in is not associated with the current connection. Only transactions associated with the current connection may be used.

Please help ...

Question

Hi,

Can you give me a sample how to implement progress bar using Signal R and Angular JS? I'm using ASP.Net MVC 5.x + Angular JS Template. Any help would be appreciate it. Thanks

Question

Hi,

How to rename base column in FullAuditedEntity like this: CreatorUserId -> InputUN CreationTime -> InputTime

please help..

Question

Hello,

Can you provide me a solution to bulk insert instead of using for each and insert 1 by 1? Thanks

Question

Hi,

I has setup Continuous Deployment using vsts. How do I auto update the database to the latest migration files after deploying using migration.exe? can you give me a guidance?

Thanks

Question

Hello,

Can you guide me to deploy aspnet zero solution on 3 tier architecture (Frontend Server & Backend Server)? How to split layer web to frontend server and other layer to backend server?

Do you have a complete tutorial to make this happen? Please help...

Showing 1 to 10 of 10 entries