Get data from sql views/stored procedures

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 2 ans
Hello All,

I am working on NoP version 4.20

I created a widget and now want to show data from a sql view that I created in database but I do not see any way to get data from my view in nopcommerce. I can only access tables through Entity Framework.

I tried to use QueryFromSql method but it can also get data from a model if it is added in context.

Please help!!

Regards,
Jitender Dhaliwal
Il y a 2 ans
There is no other way, you have to use either a entity or a query type model

Check ProductTagWithCount at Nop.Core.Domain.Catalog
and it's db map on ProductTagWithCountMap at Nop.Data.Mapping.Catalog
Il y a 2 ans
It can be done:

private readonly INopDataProvider _dataProvider;
...(use construcot injection)

var results = _dataProvider.Query<someClass>(sql).ToList();
Il y a 2 ans
Thank you for your responses, I am able to get data by overriding OnModelCreating of DBContext in the Plugin.

Added this line in overload method and after this it gets data from the sql query and view.
modelBuilder.Query<MyReturnClass>();

Also added a mapping for the view in the Plugin.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.