It worked for me !! Thanks a lot for such detailed video Sir. You have no idea what an help this tutorial has done. Your calm voice can be heard from morning till night. Teacher with great voice and simplicity in teaching has made this tutorial the best. I will watch each and every single video of yours and will gain best wisdom! thanks once again for your valuable time and effort. It means a lot for learners like us.
@@manasabangre dapper is also good to look into depending but yea ef is also nice. Been doing code since i was 10 in 1995, when ef can out loved it. Had not used in a long time so recently setting up a side project in it and there is a lack of updated processes.
That was excellent! Easy to follow and very informative. It is helping me so much on my project, and I am looking forward to the rest of the videos on this as well. Thank you so much!
Wow Thasnk man, Is there a way to display 15 lines in the table with a next button or arrow to display 16-30 and then an arrow for another 31 - 45 lines
I have learned a lot from your wonderful lectures. Thank you very much. I am also looking forward to the course on implementing CURD using jQuery, DataTables with this project. Thank you for your continued support.
Could you please provide a video on how to implement page counter in mvc . Not pagination or number of visitor . I want to know how to calculate page counting in mvc .
@codewithGopi , I followed your tutorial and here im getting data as UNdefined for some columns. the datatypes are same in sqldatabase and in public class. how can i mitigate this issue! Pls help me on this.
Hi.. I am still getting the same error which you got after adding code in EmployeeController in Index method. An unhandled exception occurred while processing the request. InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[TechKeeda.Models.DbEntities.Student]', but this ViewDataDictionary instance requires a model item of type 'System.Collections.Generic.List`1[TechKeeda.Models.StudentViewModel]'. Please help.
Hi, Im getting an error that multiple constructors cant be passed ( InvalidOperationException: Multiple constructors accepting all given argument types have been found in type 'System.Collections.Generic.List`1[Model.ContactsViewModel]'. There should only be one applicable constructor.) idk whats wrong since I was following your guide literally 1:1 except I have contacts instead of employees
The error is pretty self-explanatory. You have one or more constructors in your Contacts view model that takes the same arguments as another one. View models don't need any constructors unless you're doing your collection declaring in there (List, HashSet, etc.), and even then it's not necessary because you can declare what a collection property is while creating it. Example - public ICollection Numbers = new List().
I am using My SQL (Xamp) for Database and downloaded the required packages as well but My Project is unable to load on the server side. It is not showing me the fields name .I followed the steps you've told except using SqlServer .Kindly tell me where am making mistake .TIA.
Hi there when adding update-database in the Package Manager Console it says: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 56 - Unable to load the SQLUserInstance.dll from the location specified in the registry. Verify that the Local Database Runtime feature of SQL Server Express is properly installed.) how do i fix this
Great explanation, thank you.
It worked for me !! Thanks a lot for such detailed video Sir. You have no idea what an help this tutorial has done. Your calm voice can be heard from morning till night. Teacher with great voice and simplicity in teaching has made this tutorial the best. I will watch each and every single video of yours and will gain best wisdom! thanks once again for your valuable time and effort. It means a lot for learners like us.
Thanks for your valuable feedback and support
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
@@manasabangre dapper is also good to look into depending but yea ef is also nice. Been doing code since i was 10 in 1995, when ef can out loved it. Had not used in a long time so recently setting up a side project in it and there is a lack of updated processes.
I think Microsoft needs to hire you, I could not find this tutorial on their site. :-) Thank you.
Thanks a lot for your valuable feedback and support
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
That was excellent! Easy to follow and very informative. It is helping me so much on my project, and I am looking forward to the rest of the videos on this as well. Thank you so much!
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
Excellent training! Thank you! Well done.
Thanks for your valuable feedback and support
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
I really like your tutorial; very easy to understand and follow.
Thank you for your valuable feedback and support 👍
You are perfect, thank you. Your instructions are very clear and informative, this video helped me a great deal on my project.
Thanks a lot for your valuable feedback and support
Great explanation. Nice and simple, thank you.
Thanks for your valuable feedback and support
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
Wow Thasnk man, Is there a way to display 15 lines in the table with a next button or arrow to display 16-30 and then an arrow for another 31 - 45 lines
Awesome explaination
Thanks for your valuable feedback and support
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
I have learned a lot from your wonderful lectures. Thank you very much.
I am also looking forward to the course on implementing CURD using jQuery, DataTables with this project.
Thank you for your continued support.
Thank you so much for your valuable feedback and support. Will upload videos on JQuery and datatable
Thank you so much .. Great tutorial
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
Thank you. Nicely explained.
Thanks for your valuable feedback and support.
Could you please provide a video on how to implement page counter in mvc . Not pagination or number of visitor . I want to know how to calculate page counting in mvc .
@codewithGopi , I followed your tutorial and here im getting data as UNdefined for some columns. the datatypes are same in sqldatabase and in public class. how can i mitigate this issue! Pls help me on this.
Hi.. I am still getting the same error which you got after adding code in EmployeeController in Index method.
An unhandled exception occurred while processing the request.
InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[TechKeeda.Models.DbEntities.Student]', but this ViewDataDictionary instance requires a model item of type 'System.Collections.Generic.List`1[TechKeeda.Models.StudentViewModel]'. Please help.
Thank you very much Sir
Muito Obrigado!!!!!!!
Hi, Im getting an error that multiple constructors cant be passed ( InvalidOperationException: Multiple constructors accepting all given argument types have been found in type 'System.Collections.Generic.List`1[Model.ContactsViewModel]'. There should only be one applicable constructor.) idk whats wrong since I was following your guide literally 1:1 except I have contacts instead of employees
The error is pretty self-explanatory. You have one or more constructors in your Contacts view model that takes the same arguments as another one. View models don't need any constructors unless you're doing your collection declaring in there (List, HashSet, etc.), and even then it's not necessary because you can declare what a collection property is while creating it. Example - public ICollection Numbers = new List().
Pkg manager console not working in VS 2022 Mac version. How can I add migration?
I am using My SQL (Xamp) for Database and downloaded the required packages as well but My Project is unable to load on the server side. It is not showing me the fields name .I followed the steps you've told except using SqlServer .Kindly tell me where am making mistake .TIA.
good
👍
Thanks for your valuable feedback and support 👍
Perfect , thanks :-)
I have tried this project..but i didnt get the output...only the "No Employees Available" displayed.... no data from database haven't displayed...
Hi, have you tried in debug mode
Hi there when adding update-database in the Package Manager Console it says: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 56 - Unable to load the SQLUserInstance.dll from the location specified in the registry. Verify that the Local Database Runtime feature of SQL Server Express is properly installed.) how do i fix this
Hi, please check your connection string
Please get the github project link.
github.com/gpaptechnologies
❤️❤️❤️❤️🇵🇰🇵🇰 love your content 😍
Thank you for your feedback and support! If you're able, please consider supporting my channel by becoming a member or using Super Thanks.
Getting error connection string property has not been initialized
Can u give me solution for that ?
Can you check your connectionstring name
In appsettings.json and program.cs
@@CodeWithGopi yes checked it is same
There is a issue in your connectionstring share appsettings.json and program.cs on my email. Will check and update.
didnt work for me.