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.
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
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.
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.
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.
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...
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.
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?
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 : 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) {
@@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
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
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.
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
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.
Hahaha well written!.
well played...!!
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
Man, this guy is really great putting such great hardwork online for free.
A great voice for tutorials and very well explained. Thank you sir!
you are amazing . solved a big problem, thanks a lot.
Such a great explanation. I easily understood the concept. Thank you.
Great explanation. Each lesson is clear i leave with a full understanding of the topic
Superb ❤️ anyone can easily understand ur classes ❤️
THANKS VERY VERY MUCH, PLEASE CONTINUE
omg finally it worked thank you so much!
I am enjoying this tutorial. Thanks KudVenkat a lot :)
Great series so far! Thank you Pragim.
Thanks for the wonderful demonstration.
Very nice explaination. Thank you so much give me this great tutorials!!!
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.
Thank you so much for your videos,please upload videos for exporting and importing excel data to table and gridview.
Awesome, this was helpful.
Great series
You are more than hero
God bless you
Hi KudVenkat, appreciate your efforts, I am facing issues while using it in vs 2022, c#6. There is no startup file.
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.
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.
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.
Thank you very much sir
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.
I am getting the following error
System.ArgumentNullException: 'Value cannot be null. (Parameter 'connectionString')'
help please!!
same, have you solved it?
@@devstreamingdev I must have , don't remember it though, sorry!!
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...
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.
I'm interested about Database First, and do everithing I had in normal EF and ASP:NET
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
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.
thank you sir, great explanation and teaching....😊
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?
Wah
Sir, could you please advise how to connect Sybase database using entity framework in .net core....
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
Do you know how to scaffold views and sprocedures from SQL Server to our project by using ASP.NET Core 2.2?
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.
Hello Shravani - Not sure why you are getting that error. Can you please share your code.
@@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; }
}
@@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
is it the last video of this playlist?
Hello Asif - No this is not the last video. We have a few more important concepts and I will resume those videos soon.
When will the next part be uploaded?
Hello,
How to connect to existing database, using SQL Server authentication?
Best Regards!
Thank you
How to connect Sybase database instead of usesqlserver? Could anyone help?
why not subtitles about some videos?
wow, I fount this Text version of the video link.
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
Thanks Venkat!
Sir please upload a Node Js tutorial with mongodb please.
a waste of time of a video
Why too much short videos?
Because it is better for us beginner to grasps.
@@salomonks-francais6752
So you are saying that fresher has the only capacity can gran 2 lines of code.
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.
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
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