|
Why Admin and websites are in one project int nop core 4.10 ??? Until 3.9 they were separate projects
What are the pros & cons of running admin / website on two different ports vs one port ?
Posted:
November 26, 2018 at 12:11 AM
|
also if there could be a community developed Plugin for Zapier or Automate.IO .... then I guess there will never bt any demand for any specific Integration for WordPress or Joomla
Posted:
April 11, 2018 at 8:15 AM
|
You Can A make a plugin and override the IDiscountService methods...
Posted:
February 23, 2018 at 5:07 AM
|
So far I have
1. Create The Entity Class (e.g Apple.cs)
Path : Nop/Core/Domain/Entity.cs
2. Create The Mapping Class (e.g AppleMap.cs)
Path : Nop/Data/Mapping/EntityMap.cs
3. Create a service class and service interface (e.g appleService.cs , IappleService.cs)
Path : Nop/Services/EntityService.cs AND Nop/Services/IEntityService.cs
I am trying to get the model an apple of apple.cs in my MVC using _appleService
I want the proxy class ..but getting core/domain/apple class :(
Posted:
February 23, 2018 at 12:01 AM
|
I am getting a Product using
var product = _productService.GetProductById(productId);
System.Data.Entity.DynamicProxies.Product_967DF8C41D79EF2F39AB91BF02B7D169D5293571D588750DA121BAD279B83A8A
the type of product is
I then created a new Entity Apple and wrote the the service for it
var apple= _appleService.GetappleById(appleId);
the type of appleis
{Nop.Core.Domain.Apples.apple}
as a result , I think , I am unable to update or delete apple :(
please help me...
Posted:
February 22, 2018 at 11:55 PM
|