Documentation issue

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hey There,

I'm hopefully right in here!

Just created a new Plugin with Data Access found a issue in the Documentation:
http://docs.nopcommerce.com/display/en/Plugin+with+data+access

....
public class ProductViewTrackerRecordObjectContext : DbContext, IDbContext
    {
        public ProductViewTrackerRecordObjectContext(DbContextOptions<ProductViewTrackerRecordObjectContext> options) : base(nameOrConnectionString)
        {
        }      
...

should be:
....
public class ProductViewTrackerRecordObjectContext : DbContext, IDbContext
    {
        public ProductViewTrackerRecordObjectContext(DbContextOptions<ProductViewTrackerRecordObjectContext> options) : base(options)
        {
        }      

....


Maybe someone can fix the Documentation!

All the Best

Matthias
4 years ago
Hi Matthias,

Thank you for sharing this in community.

Are you developing plugin for nopCommerce-4.20, Right?

The document seems not upgraded for nopCommerce 4.20, it is still for nopCommerce 4.00.

As I know nopCommerce team is already working on update document, so hope they update every section according to the latest version of nopCommerce.
4 years ago
Hey Raju!

Thanks for the info, yes I'm developing a Plugin for 4.20 ;)

Okay so I'll read code, of the existing Plugins for 4.20 ;)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.