goo.gl/RFY5C2 : Subscribe to CodAffection goo.gl/DSSHtV : Mvc CRUD Operation Using Pop Up Windows goo.gl/zkoWSg : jQuery Ajax CRUD in Asp.Net MVC goo.gl/bPcyXW : Buy me a Coffee
i got lost on 17:38 because i couldn't find the reference to ReadAsAsync 'System.Net.Http.HttpContent' does not contain a definition for 'ReadAsAsync' and no extension method 'ReadAsAsync' accepting a first argument of type 'System.Net.Http.HttpContent' could be found (are you missing a using directive or an Assembly reference?)
Instead of : webAPIClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json)")); USE: webAPIClient.DefaultRequestHeaders.Add("Accept", "application/json;odata=verbose"); It works!
Nice explanation for startup! Css doesn't work have copied from project download link, but for my case Create New open in same window itself not as popup. Please help.
@17:55 i got the following error. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object. what to do?
@CodAffection can you please share which nuget packages you have added in WebApi & Mvc, coz after completing project data is not updating & deleting from front end. Or anyone can please. Preparing for interview.
The best tutorial I've seen, good job you example is the best example I've seen, only I some question, can I use a Web Services with Entity Framework action ? if you have any example for this kind problem is a good idea you try to explain, my second question is when I made my CRUB I have a item of datetime type, I use a datepicker but I have a problem whit the day when the day is major or equal to 13, I save the day in this format "mm/dd/yy" but when I recive the day in my controller I recive a parameter null, Why can you explain me this please? what I need to do for fix this problem; my last question is How to remove the hour in a field datetime, thank you
seems that your date and month are mixed up. Your computer may be receiving in USA format "mmddyyyyy" and the control might be sending in english format "ddmmyyyy" or vice versa.
very help full video but i found error 'No MediaTypeFormatter is available to read an object of type 'IEnumerable`1' from content with media type 'text/html'. can u help?? '
Hello i reslove this error suceessfully , you just need to correct port number => new Uri("localhost:44345/api/"); here 44345 is api port number in your localhost just like in your local webapi project mention correct port number and it will work..........
I can't call the HTTP method from the WebAPI project in my WebApp thorugh implementing the insert operation" in my WebApp employee controller. I cannot define the GlobalVariables (it doesn't show up). I assume it is because my WebAPI project (which in my case communicates with my MS SQL server db using EF Migrations) is a separate solution from the WebApp. You seem to have both the WebAPI and the Website in 1 solution. Any advice?
I’m trying to do it right now and I have an error when trying to connect the controller at 7:01 minutes . I have an error that pops saying “There was an error running the selected code generator: ‘Could not load file or assembly ‘Entity Framework, Version =5.0.0.0, Culture = neutral, PublicKeyToken =b77a5c561934e089’ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0x8013040)’ What can I do?
Very helpful video,i liked very much.Please upload more videos on asp.net mvc. Q1.How to use dapper in web Api with repository model ? Plz help me out.
Hi, I am getting exception, Server Error in '/' Application. Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[WebApiInMVC.Models.EmployeeMVC]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly. To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object. Path 'Message', line 1, position 11. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[WebApiInMVC.Models.EmployeeMVC]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly. To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object. Path 'Message', line 1, position 11. Source Error: Line 17: IEnumerable empList; Line 18: HttpResponseMessage response = GlobalVariables.WebApiClient.GetAsync("Employee").Result; Line 19: empList = response.Content.ReadAsAsync().Result; Line 20: return View(empList); Line 21: } Please help me to resolve this. Thnaks in advance!
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[MVC.Models.MVCEmployeeModel]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly Error is coming
Line 18: empList = response.Content.ReadAsAsync().Result; . Error: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[Mvc.Models.mvcEmployeeModel]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly. Please Fix it.
Solution: Add a reference to System.Net.Http.Formatting.dll. This assembly is also available in the C:\Program Files\Microsoft ASP.NET\ASP.NET MVC 4\Assemblies folder. The method ReadAsAsync is an extension method declared in the class HttpContentExtensions, which is in the namespace System.Net.Http in the library System.Net.Http.Formatting. Reflector came to rescue!
great tutorial , i never found like this one, if we have knowledge on concept we never feel work pressure, keep doing more videos, my humble request is to do a video on django framework similary by taking like this small project , thanks a lot
thanks for sharing your thoughts here. I'm working on my python. hopefully django framework tutorial are on the way. I would be waiting for your feedback once it is done.
This is very helpful tutorial. I have used this as reference for me practice. In my database I have two tables like project and costcenter. Costcenter having project as foreign key. Now how I can create screens for this.
i love this tutorial can you make another video again with selection box and dropdown list,radio button in one form in asp.webapi crud operation using mvc and entity frameworks. And have nav bar for the operations?
You are welcome. Web API is mostly used as API (only back-end operations without front end). So that other client side and mobile applications can consume WebAPI methods. Asp.Net MVC is used to create applications for server side or client side operations or both. Nothing is better than other both has it's own special features. If you need an application in browser and mobile application. you can create a web api and then consume the same from Asp.Net MVC for website. same WebAPI can be consumed from mobile applications (android,ios,windows phones etc). On the other hand, suppose you need only a website without mobile apps you can develop the complete website in Asp.Net MVC.
Hi Sir, your video is extremely helpful for beginers in mvc and web api. Could you please explain how to add a 'file upload' field to the Add or Edit view? Normal code in httpPost action IN THE CONTROLLER is not working.Please help
Can you please share which nuget packages you have added in WebApi & Mvc, coz after completing project data is not updating & deleting from front end. Or anyone can please. Preparing for interview.
in index.cshtml class some error showing System.NullReferenceException: 'Object reference not set to an instance of an object.' excepation Throw can you tel how can i short out this error
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[employeeMVC.Models.MvcEmployeeModel]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly. To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object. Path 'Message', line 1, position 11. Im getting an error like this anyone can help
Followed the tutorial, Thank You! One issue I am having, is that I cannot see the values stored in the DB with the api/{controller} link. It doesn't give an error message besides "No HTTP Resource was found that matches the request URI." I checked the controller and referenced it with yours, and everything checks out. What could I have missed? Thank you!
I had the same issue - firstly make sure your table in DB is populated. Secondly make sure you are referencing the correct controller name. Another things - are your methods returning Views (if yes - then this is wrong). Just paste whatever you have on top of the method after Get/Post/etc epi/{controllerAction}
depends upon your requirement. Normal crud operation includes reloading of the page after form submission in case of jQuery Ajax CRUD we can avoid that.
I have tried multiple of time the same code you have written, but it threw exception : System.Net.Http.UnsupportedMediaTypeException: 'No MediaTypeFormatter is available to read an object of type 'IEnumerable`1' from content with media type 'text/html'.'
goo.gl/RFY5C2 : Subscribe to CodAffection
goo.gl/DSSHtV : Mvc CRUD Operation Using Pop Up Windows
goo.gl/zkoWSg : jQuery Ajax CRUD in Asp.Net MVC
goo.gl/bPcyXW : Buy me a Coffee
i got lost on 17:38 because i couldn't find the reference to ReadAsAsync
'System.Net.Http.HttpContent' does not contain a definition for
'ReadAsAsync' and no extension method 'ReadAsAsync' accepting a
first argument of type 'System.Net.Http.HttpContent' could be
found (are you missing a using directive or an Assembly reference?)
Instead of : webAPIClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json)"));
USE:
webAPIClient.DefaultRequestHeaders.Add("Accept", "application/json;odata=verbose");
It works!
Just 45min and two technologies are done. Best one 👌👌👌👌
thanks for the wonderful feedback.
Thank you so much. Now I know how to use API in MVC Project using Entity Framework. Thumbs Up👍
In a Simple way, you explained
Thank u so much
Outstanding tutorial, pretty straightforward and clear.
Thank you for sharing your knowledge.
Greetings from Guatemala!! New subscriber here!!
It is really helpful for all beginner.Thank you so much.
No doubt, preety straight and simple example to understand Web API CRUD
thanks for your wonderful feedback !.
One of the best tutorials ever.
Indeed
Why are we converting id.tostring() in mvc for calling getemployee(id) from api?
I like that you show the result before the bullshit that I have to learn
awasome bro explain very well
Did you make Reset button to work?
This helped me alot. Thanks
Nice explanation for startup! Css doesn't work have copied from project download link, but for my case Create New open in same window itself not as popup. Please help.
It was one of my most precious 45 minutes. Thank you :)
Glad to hear that.
This video is awesome,really helpful. Thank you
Very helpful tutorial with apt explanation. Thanks
@17:55
i got the following error.
not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
what to do?
did you got the error ??
Absolutely what I needed. Thanks so much 👍🏻
Good help full example of Crud operation. Thanks
Glad you found the video helpful.
Thank you very much for you are providing this important information
Thank you so much !! Kindly upload three tier architecture in web api. Please.
Great job....i liked to learn mvc from ur tutorials videos...i am a beginner and i am expecting more realtime examples like this.....
thanks for the comment
@CodAffection can you please share which nuget packages you have added in WebApi & Mvc, coz after completing project data is not updating & deleting from front end. Or anyone can please. Preparing for interview.
Fantastic man, very nicely explained. Thanks
My friend, how do you create a constructor in the static class GlobalVariables? Is possible that?
error is static classes cannot have instance constructors.how can i slove this
@@nareshkumar-kf7te static GlobalVariables() { }
Thank you so much for giving more information.......
I have good support for this video...
thanks for your wonder full feedback.
What do you think about the use of Migration database and can you explain
what a great tutorial, you have helped me a lot, it's the best tutorial I've seen, thank you very much!!
thanks for the comment. Glad you found the video helpful.
If you have any topic to be discussed related to Web API or ASP.NET MVC, please reply here.
Great tutorial, but i have one question about your post obj, how can i make it accept post array obj?
Thanks for giving more information in webapi curd operations......
you are welcome.
Great tutorial, no doubt about it.
But one question to ask
How to connect Oracle database instead of SQL ?
The best tutorial I've seen, good job you example is the best example I've seen, only I some question, can I use a Web Services with Entity Framework action ? if you have any example for this kind problem is a good idea you try to explain, my second question is when I made my CRUB I have a item of datetime type, I use a datepicker but I have a problem whit the day when the day is major or equal to 13, I save the day in this format "mm/dd/yy" but when I recive the day in my controller I recive a parameter null, Why can you explain me this please? what I need to do for fix this problem; my last question is How to remove the hour in a field datetime, thank you
seems that your date and month are mixed up. Your computer may be receiving in USA format "mmddyyyyy" and the control might be sending in english format "ddmmyyyy" or vice versa.
Hello ,
can you add login and logout to this application?
Huge respect
Thanks for your wonderful feedback.
I followed the video and finished very well. You have helped me a lot, the best tutorial I've seen, I love CodAffection.
thanks for your kind words.
Thanks bro! very helpful!
Wow. great 👌. Thank you so much 💖
thank you so much, Master!!! take care...
Thank you, great tutorial.
The best video on this topic. Thank u!
Hi I have one doubt... If you create table foreign key table data also.
How to restrict this?
Good tutorial, thanks bro
very help full video but i found error 'No MediaTypeFormatter is available to read an object of type 'IEnumerable`1' from content with media type 'text/html'. can u help??
'
@Vicky Heartland I can't believe it. :)
Hello i reslove this error suceessfully , you just need to correct port number => new Uri("localhost:44345/api/"); here 44345 is api port number in your localhost just like in your local webapi project mention correct port number and it will work..........
Very nice for beginners. Thanks for this awesome tutorial.
My pleasure.
Hi, thanks for this turorial, but there is a mistake in class GlobalVariable, because Static classes cannot have instance constructors. Greetings.
Thanks for the info!
stunning crud operations sir.
thanks for the kind words.
@@CodAffection I am getting socket exception : connect was forcibly closed .. please help me how to resolve
Really its very helpful vedio using CURD opertion using web api..thanks.
glad you found the video helpful.
I can't call the HTTP method from the WebAPI project in my WebApp thorugh implementing the insert operation" in my WebApp employee controller. I cannot define the GlobalVariables (it doesn't show up). I assume it is because my WebAPI project (which in my case communicates with my MS SQL server db using EF Migrations) is a separate solution from the WebApp. You seem to have both the WebAPI and the Website in 1 solution. Any advice?
Very useful and great explanation sir . thank you please upload more videos.
sure :)
Thanks for the demonstration.
I’m trying to do it right now and I have an error when trying to connect the controller at 7:01 minutes . I have an error that pops saying “There was an error running the selected code generator: ‘Could not load file or assembly ‘Entity Framework, Version =5.0.0.0, Culture = neutral, PublicKeyToken =b77a5c561934e089’ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0x8013040)’
What can I do?
Thank you so much from Vietnam
Very helpful video,i liked very much.Please upload more videos on asp.net mvc.
Q1.How to use dapper in web Api with repository model ? Plz help me out.
Dapper ORM in Asp.net MVC : th-cam.com/video/bKB0TV_XbLA/w-d-xo.html
Superbly explained each steps, Great work. Can you please help me that how to use stored procedures using entity framework in web api?
Hi,
I am getting exception,
Server Error in '/' Application.
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[WebApiInMVC.Models.EmployeeMVC]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'Message', line 1, position 11.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[WebApiInMVC.Models.EmployeeMVC]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'Message', line 1, position 11.
Source Error:
Line 17: IEnumerable empList;
Line 18: HttpResponseMessage response = GlobalVariables.WebApiClient.GetAsync("Employee").Result;
Line 19: empList = response.Content.ReadAsAsync().Result;
Line 20: return View(empList);
Line 21: }
Please help me to resolve this.
Thnaks in advance!
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[MVC.Models.MVCEmployeeModel]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly
Error is coming
Same Error In my application :(
Add web api employee class name in the following line GlobalVariables.WebApiClient.GetAsync("Employees").Result
@@shubhamaditya7481 Thanks bro
@@shubhamaditya7481 Can you tell me where, I don't understand where I nedd to add? Please :(
@@shubhamaditya7481 Obrigado, me ajudou muito
Great Work man , huge thanks , seriously !
Glad you found the video helpful.
Great tutorial! Please keep uploading on such informative topics. Thank you
sure, thanks for the support.
Line 18: empList = response.Content.ReadAsAsync().Result;
.
Error: Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[Mvc.Models.mvcEmployeeModel]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
Please Fix it.
Solution: Add a reference to System.Net.Http.Formatting.dll. This assembly is also available in the C:\Program Files\Microsoft ASP.NET\ASP.NET MVC 4\Assemblies folder.
The method ReadAsAsync is an extension method declared in the class HttpContentExtensions, which is in the namespace System.Net.Http in the library System.Net.Http.Formatting.
Reflector came to rescue!
Good job by CodAffection Thankxx
super explain web api crud operation . but set icons not clear that part .
great tutorial , i never found like this one, if we have knowledge on concept we never feel work pressure, keep doing more videos, my humble request is to do a video on django framework similary by taking like this small project , thanks a lot
thanks for sharing your thoughts here.
I'm working on my python. hopefully django framework tutorial are on the way.
I would be waiting for your feedback once it is done.
wonderful. this tutorial is very helpful, understandable and well explained. great job
So many adds, overal it's very easy to understand.
Excellent, great tutorial
Is this able to do it with a windows form app? Thank you!
thanks for tuto.. Good job. I think 142k views and just 1k likes is injustice.
Thanks for the wonderful comment.
Thank u for this video..helped a lot
So great thank you.
Nice video but how to connect database and where is store procedure??
Nice work brother.
This is very helpful tutorial. I have used this as reference for me practice. In my database I have two tables like project and costcenter. Costcenter having project as foreign key. Now how I can create screens for this.
Nice content Sir
Awesome, Thank you!
hi, may i know about the database, do we need to do another project or still in the same solution with mvc and dummy project?
You did good, congrats
If suppose their are 11 table then we need to create 11 controllers in mvc and in api also?
Very good Video. Thanks !
My pleasure & Wish You Good Luck :)
Great Tutorial Man Awesome Job!
Glad you found the video helpful.
Great Video.
i love this tutorial can you make another video again with selection box and dropdown list,radio button in one form in asp.webapi crud operation using mvc and entity frameworks. And have nav bar for the operations?
Thaks so much for this video. But whiich is better is it MVC controller or WEB API
You are welcome.
Web API is mostly used as API (only back-end operations without front end). So that other client side and mobile applications can consume WebAPI methods. Asp.Net MVC is used to create applications for server side or client side operations or both.
Nothing is better than other both has it's own special features.
If you need an application in browser and mobile application. you can create a web api and then consume the same from Asp.Net MVC for website. same WebAPI can be consumed from mobile applications (android,ios,windows phones etc).
On the other hand, suppose you need only a website without mobile apps you can develop the complete website in Asp.Net MVC.
Great tutorial as always!
Hi Sir, your video is extremely helpful for beginers in mvc and web api. Could you please explain how to add a 'file upload' field to the Add or Edit view? Normal code in httpPost action IN THE CONTROLLER is not working.Please help
Can you please share which nuget packages you have added in WebApi & Mvc, coz after completing project data is not updating & deleting from front end. Or anyone can please. Preparing for interview.
Hi for some reason when i submit the form, the values are not getting added in the database
Great Tutorial.this is the best
Thank you for the wonderful feedback! :) I'm humbled.
Thank u v.much , please need authurization and authintication, access rights
in index.cshtml class some error showing System.NullReferenceException: 'Object reference not set to an instance of an object.'
excepation Throw
can you tel how can i short out this error
Can we tell this project a 3 - tier architecture project?
Tu video es genial! gracias!
de nada =D
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.IEnumerable`1[employeeMVC.Models.MvcEmployeeModel]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'Message', line 1, position 11.
Im getting an error like this anyone can help
Followed the tutorial, Thank You!
One issue I am having, is that I cannot see the values stored in the DB with the api/{controller} link. It doesn't give an error message besides "No HTTP Resource was found that matches the request URI."
I checked the controller and referenced it with yours, and everything checks out.
What could I have missed?
Thank you!
I had the same issue - firstly make sure your table in DB is populated. Secondly make sure you are referencing the correct controller name. Another things - are your methods returning Views (if yes - then this is wrong). Just paste whatever you have on top of the method after Get/Post/etc epi/{controllerAction}
This is what I'm looking for. Just subcribed and iked... thanks man! :)
Thanks man.
Which method is best for crud in MVC application... Normal CRUD or jQuery Ajax CRUD ???
depends upon your requirement.
Normal crud operation includes reloading of the page after form submission in case of jQuery Ajax CRUD we can avoid that.
Very helpful, keep the good work :)
Glad you found the video helpful.
I have tried multiple of time the same code you have written, but it threw exception :
System.Net.Http.UnsupportedMediaTypeException: 'No MediaTypeFormatter is available to read an object of type 'IEnumerable`1' from content with media type 'text/html'.'
Did u solved that error
Great video, thanks!
Super tutorial
THANK YOU FOR ALL