Hi everyone!
I do new column "Videosrc" in Product table MongoDb.
I add "public string Videosrc {set; get;}" in Product class.
It's work! But if I using productService.
But if i add "public string Videosrc {set; get;}" in ProductOverviewModel, it's don't work.
string src = @product.Videosrc all return 'null'
How to relation Product and ProductOverviewModel?
Thanks.