Using sql server with entity framework core

  Рет қаралды 222,903

kudvenkat

kudvenkat

Күн бұрын

Пікірлер: 82
@enmanuelr7
@enmanuelr7 5 жыл бұрын
Notice that you are a great teacher. The point that i am trying to make is that i like the way you explain. That's all in this comment, thank you for reading.
@MrKoukoo
@MrKoukoo 5 жыл бұрын
Hahaha well written!.
@vinodp7508
@vinodp7508 4 жыл бұрын
well played...!!
@yasinyussuf6846
@yasinyussuf6846 4 жыл бұрын
I don't understand why some dislike a tutorial like this. Please appreciate the effort put on this.He knows what i don't know that is why i am watching this tutorial and i am Not jealous at all :D
@GabolHackers
@GabolHackers 4 жыл бұрын
Man, this guy is really great putting such great hardwork online for free.
@salomonks-francais6752
@salomonks-francais6752 5 жыл бұрын
Such a great explanation. I easily understood the concept. Thank you.
@ehaltom1
@ehaltom1 5 жыл бұрын
Great series so far! Thank you Pragim.
@rengoku81xx
@rengoku81xx Жыл бұрын
A great voice for tutorials and very well explained. Thank you sir!
@TamilDove
@TamilDove 7 ай бұрын
Superb ❤️ anyone can easily understand ur classes ❤️
@lifetraveler8008
@lifetraveler8008 4 жыл бұрын
I am getting the following error System.ArgumentNullException: 'Value cannot be null. (Parameter 'connectionString')' help please!!
@devstreamingdev
@devstreamingdev 3 жыл бұрын
same, have you solved it?
@lifetraveler8008
@lifetraveler8008 3 жыл бұрын
@@devstreamingdev I must have , don't remember it though, sorry!!
@alik.8061
@alik.8061 2 жыл бұрын
you are amazing . solved a big problem, thanks a lot.
@christopherbloomfield1074
@christopherbloomfield1074 4 жыл бұрын
Great explanation. Each lesson is clear i leave with a full understanding of the topic
@ypwygk652
@ypwygk652 4 жыл бұрын
THANKS VERY VERY MUCH, PLEASE CONTINUE
@rsrodas
@rsrodas 5 жыл бұрын
Interesting to see multiple calls to Data Base in Index View if we use the model several times (foreach) in the page ?! I'm still not convinced in using Entity Framework...
@TheITomG
@TheITomG 3 жыл бұрын
I don't think you understand how EF works. You can make changes to the model (multiple times) and when your done you save the state to the DB.
@shravanishetty4916
@shravanishetty4916 5 жыл бұрын
Hi...Regarding the above video, when i try to pass the created context class 'AppDbContext' to the 'AddDbContextPool', it gives me a error like 'Static types cannot be used as type arguments'. Could you please help me in resolving this.
@Csharp-video-tutorialsBlogspot
@Csharp-video-tutorialsBlogspot 5 жыл бұрын
Hello Shravani - Not sure why you are getting that error. Can you please share your code.
@shravanishetty4916
@shravanishetty4916 5 жыл бұрын
@@Csharp-video-tutorialsBlogspot : Ya sure. Please find the below code. Startup.cs public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddDbContextPool( options => options.UseSqlServer(Configuration.GetConnectionString("EmployeeDBConnection"))); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } } AppContext.cs public class AppContext : DbContext { public AppContext(DbContextOptions options): base(options) { } public DbSet Employees { get; set; } }
@shravanishetty4916
@shravanishetty4916 5 жыл бұрын
@@Csharp-video-tutorialsBlogspot : Hi Venkat, Got the below issue. There is an 'AppContext' class which derives from 'System' namespace. Hence it got ambiguous between my context class and the one in 'System' namespace. Once I changed the name of my context class then it derived from my project namespace. Now it works fine. Thanks
@stephen9646
@stephen9646 4 жыл бұрын
Is there a way to test the connection of the data source of Sql Server and C#/dotnet core in VS Code? because Visual Studio does and I was wondering if there is one for VS Code.
@mahekchavan8446
@mahekchavan8446 4 жыл бұрын
In this video, correct me if I am wrong, we haven't the _employeeList ,right? In the delete method, we deleted the employee from the list.
@chandanapatel8505
@chandanapatel8505 5 жыл бұрын
Thank you so much for your videos,please upload videos for exporting and importing excel data to table and gridview.
@pablosalas8586
@pablosalas8586 4 жыл бұрын
how to configure is I need for example: an IDepartmentRepository, etc because in this project we just use one model(Employee), and Department is an enum so, how can i do if i need more models?? anyone knows?
@Ozzieyy
@Ozzieyy 2 жыл бұрын
omg finally it worked thank you so much!
@TheUjjwalpandey
@TheUjjwalpandey 4 жыл бұрын
I am enjoying this tutorial. Thanks KudVenkat a lot :)
@ashutoshporwal
@ashutoshporwal Жыл бұрын
Hi KudVenkat, appreciate your efforts, I am facing issues while using it in vs 2022, c#6. There is no startup file.
@johnwindsor5426
@johnwindsor5426 5 жыл бұрын
Very nice explaination. Thank you so much give me this great tutorials!!!
@Csharp-video-tutorialsBlogspot
@Csharp-video-tutorialsBlogspot 5 жыл бұрын
Hello John - You are very welcome. I have included all the .NET Course videos, slides and text articles in sequence on the following page. Hope you will find it handy. www.pragimtech.com/courses/asp-net-core-mvc-tutorial-for-beginners/ When you have some time, can you please leave your rating and valuable feedback on the reviews tab. It really helps us. Thank you.
@naodagere8210
@naodagere8210 4 жыл бұрын
Thanks for the wonderful demonstration.
@ljupconewman9357
@ljupconewman9357 5 жыл бұрын
Do you know how to scaffold views and sprocedures from SQL Server to our project by using ASP.NET Core 2.2?
@pavankogpayana
@pavankogpayana 5 жыл бұрын
first thank you so much for your videos, my request is what do you say dapper vs entity framework. I'm waiting for your suggestions/answer
@Csharp-video-tutorialsBlogspot
@Csharp-video-tutorialsBlogspot 5 жыл бұрын
Hello Shiv - From a performance standpoint Dapper is better and from ease of development standpoint EF is better. However, which technology is better for your project depends on several criteria like the mix of technologies you are using, the architecture of the application, the scope of your project, performance, test, deployment and development needs, the development team skills etc.
@pavankogpayana
@pavankogpayana 5 жыл бұрын
thank you sir, great explanation and teaching....😊
@Tajdev
@Tajdev 5 жыл бұрын
is it the last video of this playlist?
@Csharp-video-tutorialsBlogspot
@Csharp-video-tutorialsBlogspot 5 жыл бұрын
Hello Asif - No this is not the last video. We have a few more important concepts and I will resume those videos soon.
@halivudestevez2
@halivudestevez2 5 жыл бұрын
I'm interested about Database First, and do everithing I had in normal EF and ASP:NET
@mikebreeden6071
@mikebreeden6071 4 жыл бұрын
I love these videos but just FYI what I simply cannot find is how to get configuration values in a code behind page. I need my AWS Secret Key, etc. Yes, you say how to put them into the "out of project" Secrets location. You explain in detail the order which configuration locations are checked and overridden. No where though can I find how to simply read a configuration setting from a code behind page. .. I do keep watching these though. I learn more even when watching them the second time. Thanks much.
@virenderkumar-ek5fr
@virenderkumar-ek5fr 3 жыл бұрын
Great series
@rahimkhosravinasab1883
@rahimkhosravinasab1883 4 жыл бұрын
Awesome, this was helpful.
@mohanaddahe3522
@mohanaddahe3522 5 жыл бұрын
thank you alot. Please if you can to provide a course to boilerplate framework it's more powerfull framework and depends on design driven development
@thanks_God_ForEverything
@thanks_God_ForEverything 4 жыл бұрын
You are more than hero
@acollectionofmeaninglesswords
@acollectionofmeaninglesswords 2 жыл бұрын
God bless you
@sulaimanahmedz5826
@sulaimanahmedz5826 5 жыл бұрын
Sir can you make a vide on uploading and downloading images and/or videos in angular 7 and ASP.NET CORE. It would be very helpful.
@sachingotal11
@sachingotal11 5 жыл бұрын
When will the next part be uploaded?
@pallaviganesh5578
@pallaviganesh5578 4 жыл бұрын
Sir, could you please advise how to connect Sybase database using entity framework in .net core....
@marselinalatumaerissa1523
@marselinalatumaerissa1523 5 жыл бұрын
Great job venkat, can you please make parts video starting from insert, delete, update, retrieving data from simple case until using bootstrap and EF? thank you
@genovme
@genovme 4 жыл бұрын
Hello, How to connect to existing database, using SQL Server authentication? Best Regards!
@lianyingzhang1358
@lianyingzhang1358 5 жыл бұрын
why not subtitles about some videos?
@lianyingzhang1358
@lianyingzhang1358 5 жыл бұрын
wow, I fount this Text version of the video link.
@sakthir3892
@sakthir3892 5 жыл бұрын
Thank you very much sir
@pallaviganesh5578
@pallaviganesh5578 4 жыл бұрын
How to connect Sybase database instead of usesqlserver? Could anyone help?
@namratakumar764
@namratakumar764 5 жыл бұрын
Wah
@eugene-white-shark
@eugene-white-shark 3 жыл бұрын
Thank you
@coolwaterdvr
@coolwaterdvr 5 жыл бұрын
Thanks Venkat!
@sourishdutta9600
@sourishdutta9600 5 жыл бұрын
Sir please upload a Node Js tutorial with mongodb please.
@abidalisidd
@abidalisidd 5 жыл бұрын
Why too much short videos?
@salomonks-francais6752
@salomonks-francais6752 5 жыл бұрын
Because it is better for us beginner to grasps.
@abidalisidd
@abidalisidd 5 жыл бұрын
@@salomonks-francais6752 So you are saying that fresher has the only capacity can gran 2 lines of code.
@salomonks-francais6752
@salomonks-francais6752 5 жыл бұрын
Would you prefer a short but precise video or a longer one that takes you half of the day for the same content? I have seen some teachers spending hours to dispense the same lessons Mr. Kudvenkat teaches in less than 10 minutes. I personally prefer his technic as once I watch one video, I don't have to revisit it when practising. It's all about time.
@Sysshad
@Sysshad 5 жыл бұрын
its much easier to find the exact info you need by dividing the information. Also he does some repetition of previous content at start so ppl remember better. its a good strategy
@slashd
@slashd 4 жыл бұрын
I prefer these short video's instead of those 40+ minutes ones, too many topics discussed so it's difficult to find what you're looking for
@suchdogemuchwow1231
@suchdogemuchwow1231 Жыл бұрын
a waste of time of a video
Repository pattern in asp net core
14:50
kudvenkat
Рет қаралды 308 М.
DbContext in entity framework core
5:19
kudvenkat
Рет қаралды 233 М.
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Fix Your Controllers By Refactoring To Minimal APIs
14:56
Milan Jovanović
Рет қаралды 45 М.
Testing Entity Framework Core Correctly in .NET
8:03
Nick Chapsas
Рет қаралды 32 М.
Что такое Framework простыми словами?
9:51
Sergey Nemchinskiy
Рет қаралды 192 М.
Почему я не использую Entity Framework
30:19
Програмысли Влог
Рет қаралды 10 М.
Setup MS SQL in ASP.NET Core with Entity Framework
18:49
ZetBit
Рет қаралды 12 М.
Introduction to entity framework core
4:45
kudvenkat
Рет қаралды 166 М.
Entity framework реализация патернов Relation.
25:06
Архитектор ПО. Александр Желнин
Рет қаралды 6 М.
File upload in asp net core mvc
23:12
kudvenkat
Рет қаралды 189 М.
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН