56 | How To Create ASP.NET Core Web API Project Template | Swagger | ASP.NET Core 6 (Hindi/Urdu)

  Рет қаралды 32,884

Programentor

Programentor

Күн бұрын

Пікірлер: 34
@amoghverma
@amoghverma 10 ай бұрын
Mujhe apke Video Se concept clear ho gya...Thanks
@bhanuchaurasia6335
@bhanuchaurasia6335 Жыл бұрын
Jabardast sir ....CRUD operation with Onion Architecture
@kishoredas9171
@kishoredas9171 Жыл бұрын
Great 👍👍👍👍
@yogeshkumarpatil591
@yogeshkumarpatil591 Жыл бұрын
Excellent ! Excellent ! Excellent !
@salmanahmed3938
@salmanahmed3938 10 ай бұрын
very well explained👍
@usmansamad4899
@usmansamad4899 10 ай бұрын
very well explained
@Anonymous-playlist
@Anonymous-playlist 4 ай бұрын
Thankyou so much 👏
@muhammadwaqas1437
@muhammadwaqas1437 Жыл бұрын
MashAllah ❤
@nishantkumar681
@nishantkumar681 6 ай бұрын
Great leacture
@HacksaurTales2.0
@HacksaurTales2.0 Жыл бұрын
Bootstrap ki series puri krwado sir🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰
@engineersINnight
@engineersINnight 8 ай бұрын
nice
@Programmingkiduniya
@Programmingkiduniya 11 күн бұрын
Sir please Minimal API with clean Architecture ka playlist bnaiye , ye concept samajh me nhi aa rha h
@usamawaseem5010
@usamawaseem5010 Жыл бұрын
Please also make detailed video on API please
@patelhardik2505
@patelhardik2505 Жыл бұрын
Thank you sir
@haseebkambohh
@haseebkambohh Жыл бұрын
Salam, Please make tutorial for the mentioned topics. 1. Depending injection. 2. Addsingleton, addscoped, addtransiatuon. 3. Logging. Logs 4. Rate limiting.
@emperor7369
@emperor7369 Жыл бұрын
IDK he created or not but let me explain dependency injection is used to inject interface that helps to loosely couple the classes and make unit testing easy. public Interface IManageUser { bool CreateUser(Person user); bool UpdateUser(Person user); } class ManageUser:IManageUser { bool CreateUser(Person user) { //apply logic here } bool UpdateUser(Person user) { //apply logic here } } class UserController : controller { private readonly IManageUser ManageUser; public UserController(IManageUser ManageUser) { this.ManageUser=ManageUser; } [httppost("AddUser")] public void AddUser() { Person person=new Person(){ name="anonymous", age=20 }; ManageUser.CreateUser(person); } } now how it helps to loosely couple? you can see in UserController that we injected IManageUser instead of ManageUser to create a user. we have no object for ManageUser class instead we are using interface(IManageUser) for createUser. this thing loosely couples the ManageUser with UserController instead of tight coupling by creating an object of Manage user. like class UserController : controller { private readonly IManageUser ManageUser; public UserController() { //tight coupling this.ManageUser=new ManageUser(); } } now you are wondering that how an object of ManageUser() will be created or how AddUser() method of UserController class knows that I am passing that person to ManageUser class to handle it. well the answer is hidden in your next question. AddSingleton, AddScoped, AddTransient are used to register dependency injection objects. like service.AddSingleton(); this line of code created an object of ManageUser when ever a http request wants data from AddUser() method or any other method from UserController or any other controller where IManageUser is injected. for difference you can watch video on that link he explains it very well. I think I can't explain it well with typing kzbin.info/www/bejne/rGexo2qQosahlbssi=MAmvnTvX-Dc4WBPvkzbin.info/www/bejne/rGexo2qQosahlbssi=MAmvnTvX-Dc4WBPv 3. Logging/Logs I think you are talking about the logging of information. It is used to log information at different levels. we have many types of loggers for different purposes. for log of info on console we use ILogger interface. if you want to store every log you can use NLog nugget package to save data in text file. here are the levels of logger 1. information --> logs every information that we collect against execution of program. 2. Warning --> logs every warning information that we got on execution of program. 3. Trace --> logs the execution flow of program. 4. Error --> logs the error on execution of program class UserController : controller { private readonly ILogger Logger; public UserController(ILogger Logger) { //Asp.net already defined an object against this interface. we don't have to define it. this.Logger=Logger; } void AddUser() { Logger.logWarning("this is temporary warning"); } } 4. Rate Limiting: mjy nai pta agr apko koi achi video mily tou link paste kr daind 🙂
@hamzajutt2379
@hamzajutt2379 Жыл бұрын
Thanks sir
@kishoredas9171
@kishoredas9171 Жыл бұрын
Hi Adil Ek eisa tutorial bana sakte hai kya jaha "debug" karna sikha sakte hai.. Error dhund ne ke liye... -- From India
@hindurashtra9438
@hindurashtra9438 7 ай бұрын
Sir aap db first approach ka use krke Identity or Admin role ko bhi explain kar do sir please ❤😊 Best content on you tube for .net developers❤💞
@NirajKumar-hp9yq
@NirajKumar-hp9yq 10 ай бұрын
Sir.net core se ek project bhi banawa dije plz sir
@RavindraWadile-x5m
@RavindraWadile-x5m Жыл бұрын
@programentor apka angular wala series pura complete kar diya he sir apne ?
@junaid._.ismail7083
@junaid._.ismail7083 4 ай бұрын
Sir thank you so much cleared my concepts ❤ Can you give me project ideas for fresher
@Coddingwebs
@Coddingwebs 4 ай бұрын
Sir minimul api pr bhi video banaiye
@KiyaniStrlk
@KiyaniStrlk Жыл бұрын
Thnxxxx❤❤❤
@mageking4343
@mageking4343 Жыл бұрын
You can integrate angular in it
@LogicofEngineers
@LogicofEngineers Жыл бұрын
please make this video with 3-Tier Architecture
@arreyur47
@arreyur47 Жыл бұрын
Are these contents different from learning never ends Web API playlist??
@dhananjaybhagwat365
@dhananjaybhagwat365 7 ай бұрын
sir one session for email services means one email on the client's mail for any confirmation like booking, applied, etc .
@dhananjaybhagwat365
@dhananjaybhagwat365 7 ай бұрын
here I came through all of your previous sessions of this series
@raghavjaccker5642
@raghavjaccker5642 Жыл бұрын
Plz make a small project with all crud ef in all in one core or CRUD ....PLZ
@waqar8544
@waqar8544 7 ай бұрын
😍😍😍
@sajidshaikh2431
@sajidshaikh2431 Жыл бұрын
Assalamoalaikum Adil Sir please implement JWT with web api
@ahmedraza-mg3yn
@ahmedraza-mg3yn 8 ай бұрын
Sir Rdlc Report complete karvade
@ease-tech
@ease-tech 9 ай бұрын
serialization?
Мама у нас строгая
00:20
VAVAN
Рет қаралды 12 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 22 МЛН
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 14 МЛН
Implementing CQRS and Mediatr ASP.NET CORE in Hindi
23:36
Technology Keeda
Рет қаралды 15 М.
Путин ответил на угрозы Трампа
7:21
Diplomatrutube
Рет қаралды 1,2 МЛН
62. .NET Framework vs .NET Core vs .NET vs .NET Standard vs C#
25:14