Jabardast sir ....CRUD operation with Onion Architecture
@kishoredas9171 Жыл бұрын
Great 👍👍👍👍
@yogeshkumarpatil591 Жыл бұрын
Excellent ! Excellent ! Excellent !
@salmanahmed393810 ай бұрын
very well explained👍
@usmansamad489910 ай бұрын
very well explained
@Anonymous-playlist4 ай бұрын
Thankyou so much 👏
@muhammadwaqas1437 Жыл бұрын
MashAllah ❤
@nishantkumar6816 ай бұрын
Great leacture
@HacksaurTales2.0 Жыл бұрын
Bootstrap ki series puri krwado sir🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰
@engineersINnight8 ай бұрын
nice
@Programmingkiduniya11 күн бұрын
Sir please Minimal API with clean Architecture ka playlist bnaiye , ye concept samajh me nhi aa rha h
@usamawaseem5010 Жыл бұрын
Please also make detailed video on API please
@patelhardik2505 Жыл бұрын
Thank you sir
@haseebkambohh Жыл бұрын
Salam, Please make tutorial for the mentioned topics. 1. Depending injection. 2. Addsingleton, addscoped, addtransiatuon. 3. Logging. Logs 4. Rate limiting.
@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 Жыл бұрын
Thanks sir
@kishoredas9171 Жыл бұрын
Hi Adil Ek eisa tutorial bana sakte hai kya jaha "debug" karna sikha sakte hai.. Error dhund ne ke liye... -- From India
@hindurashtra94387 ай бұрын
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-hp9yq10 ай бұрын
Sir.net core se ek project bhi banawa dije plz sir
@RavindraWadile-x5m Жыл бұрын
@programentor apka angular wala series pura complete kar diya he sir apne ?
@junaid._.ismail70834 ай бұрын
Sir thank you so much cleared my concepts ❤ Can you give me project ideas for fresher
@Coddingwebs4 ай бұрын
Sir minimul api pr bhi video banaiye
@KiyaniStrlk Жыл бұрын
Thnxxxx❤❤❤
@mageking4343 Жыл бұрын
You can integrate angular in it
@LogicofEngineers Жыл бұрын
please make this video with 3-Tier Architecture
@arreyur47 Жыл бұрын
Are these contents different from learning never ends Web API playlist??
@dhananjaybhagwat3657 ай бұрын
sir one session for email services means one email on the client's mail for any confirmation like booking, applied, etc .
@dhananjaybhagwat3657 ай бұрын
here I came through all of your previous sessions of this series
@raghavjaccker5642 Жыл бұрын
Plz make a small project with all crud ef in all in one core or CRUD ....PLZ
@waqar85447 ай бұрын
😍😍😍
@sajidshaikh2431 Жыл бұрын
Assalamoalaikum Adil Sir please implement JWT with web api