Thanks you Nitish sir for this series. I have religiously been watching every bit your videos in this series so far and you have been so kind to be as precise as possible. Very excited to finish this till last section.
@WebGentle4 жыл бұрын
So nice of you
@AdnanUlHaqCA4 жыл бұрын
Your flow is amazing and keep the flow the same way. The way you are building the application from scratch and building it up is so amazing. Sometimes you copy the bootstrap code from somewhere, I suggest for future show those links as well but I see you do in many videos but on some it is not there. You can mention in the comment for those videos.
@WebGentle4 жыл бұрын
Thanks @Adnan for the kind words and suggestions. Keep watching the videos and share your valuable feedback with me in the comment section. #KeepLearning
@Fkn14054 жыл бұрын
Thank you very much for all these tutorials.
@AdnanUlHaqCA4 жыл бұрын
You are doing a great job brother. Thumbs up! This style of creating a app is very good. At start of the playlist where you mixed note pad with visual studio gave a bad impression and i believe that is the reason many people are leaving the play list. But now it is so amazing. I love this. Please keep building such applications in MVC such as LMS. Love you more.
@alanalee27432 жыл бұрын
You the best
@ms.sufiya93532 жыл бұрын
hey , I get an error in @foreach(var book in Model) line .nullreferenceexception: object reference not set to an instance of an object. . Please, help me out?
@rozinaansari5395 Жыл бұрын
Yes I had literally the same issue this issue occurs BCz we hadn't pass the data in return view(); that's why showing null just replace it with return view(data); the error will be resolved 😊
@gokhanc.52504 жыл бұрын
Thanks, you are perfect.
@AbhinavKumardns4 жыл бұрын
Awesome, sir for bootstrap kindly add that in the comment section if possible
@bhadrik3 жыл бұрын
Thank you again
@adilmajeed34443 жыл бұрын
Sir Nitish Thank you so much for providing us these great lectures , i have one query , you passed ienumerbale type @model, if we simply use @model webgentle.bookstore.Model and then use foreach loop , would it have worked ? or it is necessary to pass model in ienumerable type ? thank you
@wongguanyan21414 жыл бұрын
Hi sir! can you give the code of SVG tag that you use in this tutorial? I can't find in github and bootstrap! Hope to get your reply as soon as possible.Thanks
@vasiliv20003 жыл бұрын
you can find it on icons.getbootstrap.com/ For example I used this one:
@developerdailylife47914 жыл бұрын
Is there is any videos in this course about publishing process using .net core as i think it's different from .net framework ?
@WebGentle4 жыл бұрын
upcoming
@developerdailylife47914 жыл бұрын
@@WebGentle thank you for replay , you did great job in this course
@musawerawan54794 жыл бұрын
Sir bootstrap 4 "container-fluid" not working on visual studio 2019 and if i increase its width then only increases on right side while the left remains fixed
@HammadArshad3 жыл бұрын
I'm facing this error Object reference not set to an instance of an object. BookShop.Controllers.BookController.Getbooks() in BookController.cs - public BookController() { BookRepository _bookRepositoty = new BookRepository(); } public ViewResult Getbooks() { var data = _bookRepositoty.getallbooks(); return View(data); } } }
@ammadkhan23523 жыл бұрын
What if heave multiple grids with different models how will do this
@rokckerzzzz60804 жыл бұрын
Sir, if I want to use 3 different model in same view for foreach loop, then how it know to @model directive to use which model to use in which foreach loop?
@WebGentle4 жыл бұрын
Directly you cant. Use one of the following based on the requirement - Separate partial view - Separate view component - View Model
@silajitsaha33692 жыл бұрын
How to render mote than 1 model in the view?
@coolkirans3 жыл бұрын
Hi Sir, when we add book card code in GetAllBook.cshtml is add successfully. I add IEnumerable @modelIEnumerable But when use @foreach (var book in Model) and run this application then I got exception error which is An unhandled exception occurred while processing the request. NullReferenceException: Object reference not set to an instance of an object. AspNetCore.Views_Book_GetAllBook.ExecuteAsync() in GetAllBook.cshtml, line 9 could you please help me ..