Skynet
Skynet
  • 21
  • 109 873
Rate Limiter in Asp.Net Core | Web Api | C#
Rate limiting is a technique used to limit the number of requests a client can make to an API within a specified time period
It can be implemented to,
Prevent Denial of Service (DoS) attacks
Generate revenue (users can subscribe to get premium/unlimited access to the resources)
Maintain system stability and prevents one client from overwhelming the API server with an excessive number of requests
Rate Limiter algorithms are,
Fixed Window
Sliding Window
Token Bucket
Concurrency
00:00:09 Introduction
00:01:17 Fixed Window
00:07:18 Sliding Window
00:14:10 Token Bucket
00:20:27 Concurrency
Source Code
github.com/Skynet-Demos/RateLimiter
Support me by buying a coffee
www.buymeacoffee.com/skynetechs
มุมมอง: 362

วีดีโอ

Maui with MediatR | Notifications | Request/Response| Publish/Subscribe
มุมมอง 520ปีที่แล้ว
It is quite common in application development that two components need to communicate with each other We can achieve that without any dependency (de-coupling) on each other using MediatR library This can be implemented in any .Net application. Today, we're going to explore how it works in .Net MAUI. .Net MAUI Storage Options th-cam.com/video/r3HLFO2Yz1g/w-d-xo.html 00:43:06 Todo App Source gith...
.Net Maui Storage Options | Preferences | Secure Storage | File System | Sqlite
มุมมอง 2.2Kปีที่แล้ว
.Net Maui provides 3 storage options for storing data locally on the device. 1. Preferences & Secure Storage 2. File System 3. Sqlite In this tutorial, we're gonna explore all these options with a Todo Android App. 00:01:00 Title & Intro 00:02:43 Create an app with Login and Logout functionality 00:20:20 Preferences & Secure Storage 00:32:20 File System 00:43:06 Sqlite 01:30:55 Demo Source gith...
MAUI Popups | MAUI Community Toolkit
มุมมอง 8Kปีที่แล้ว
Popups are very common either it could be a Web App, Windows App or Mobile App. We can display a piece of information, or we can collect user inputs using Popups. Today, we're going to implement Popups in .Net MAUI using .Net MAUI Community Toolkit. Source Code github.com/Skynet-Demos/MauiPopups Buy me a Coffee! www.buymeacoffee.com/skynetechs The illustrations I added into the Video are design...
SignalR with .Net MAUI | Basic Chat App | Android App | Windows App
มุมมอง 8Kปีที่แล้ว
In our channel, we have presented many demos on SignalR related to Asp.Net Web App. In today's tutorial, we will implement SignalR in .Net MAUI app Will build a basic chat app and have a conversation among Web Browser, Mobile and Windows Apps I’m assuming that you have already watched my previous tutorial on SignalR Basics in Asp.Net Core. If not, I strongly recommend you watch that and come ba...
SignalR with Entity Framework | Personalized Notifications | Sql Table Dependency
มุมมอง 12Kปีที่แล้ว
In this tutorial, we will see a demo on getting Personalized Notifications to the connected Hub clients using Entity Framework Core. I’m assuming that you have already watched my previous tutorial on SignalR with Sql Table Dependency. If not, I strongly recommend you watch that and come back here th-cam.com/video/3SJrag0UiTY/w-d-xo.html Source Code github.com/Skynet-Demos/SignalR-EntityFramewor...
Update UI with Signal R in Asp.Net MVC Core Web Application
มุมมอง 9K2 ปีที่แล้ว
Sometimes we have to run time taking jobs in the application like Backing up and restoring databases from application UI Process the data Some kind of Schedulers from the application UI etc We have to continusly send the updates to the UI without refreshing it. Here we can use SignalR to send the updates to the UI from the controller. Our requirement is to process some data and that takes follo...
SignalR with Sql Table Dependency in Asp.Net Core
มุมมอง 31K2 ปีที่แล้ว
This tutorials is about pushing database changes to the UI dashboard using Signal R with Sql Table Dependency. SqlTableDependency is a high-level C# component used to audit, monitor and receive notifications on SQL Server's record table changes. For any record table change, as insert, update or delete operation, a notification containing values for the record changed is delivered to SqlTableDep...
RazorPay Payment Gateway Integration in ASP.Net WebForms
มุมมอง 5K2 ปีที่แล้ว
Payment gateway integration is most common module in web applications these days. Before going forward, if you do not watch my Razorpay Payment Gateway Integration in .NET MVC Core web application, please go and must watch it. I have explained many more things in detail. th-cam.com/video/w3Eabl3CfDU/w-d-xo.html Here we discuss about the integration of RazorPay payment gateway in .NET Framework ...
SignalR Basics in Asp.Net Core
มุมมอง 4.9K2 ปีที่แล้ว
ASP.NET Core SignalR is an open-source library that simplifies adding real-time web functionality to apps. Real-time web functionality enables server-side code to push content to clients instantly. Source Code github.com/Skynet-Demos/SignalR 00:00 Preview 00:33 Intro 02:21 Demo walk through Buy me a Coffee! www.buymeacoffee.com/skynetechs Asp.Net MVC Core th-cam.com/play/PLo-ZNwEHZHqbP28HuOW-qN...
Custom Exceptions in Asp.Net Core
มุมมอง 3.3K2 ปีที่แล้ว
Custom Exceptions provide more meaningful messages to the client. We often come across a situation where our business rules are violated. And sometimes, the built-in exceptions may not suit for our requirement. There, Custom Exceptions come into picture. Custom Exception class should inherit from system Exception class. Custom Middleware th-cam.com/video/NjOC4q_57VI/w-d-xo.html Application logg...
Custom Middleware and Log Global Exceptions in Asp.Net MVC Core
มุมมอง 2.5K2 ปีที่แล้ว
Middleware is generally encapsulated in a class and exposed with an extension method which is executed on every request in ASP.NET Core application. Middleware is configured in Configure method the Startup.cs file. Custom middleware is a class with Invoke() method which allows us to implement our own logic. This tutorial explains about custom middleware in Asp.Net Core MVC to log exceptions glo...
Middleware in Asp.Net MVC Core
มุมมอง 5373 ปีที่แล้ว
This video explains about the middleware, how to consume them, levels and segments of middleware etc. A middleware is nothing but a component (class) which is executed on every request in ASP.NET Core application. Middleware are configured in Configure method the Startup.cs file. The configure method is where you define the app’s request processing pipeline, by registering framework or custom m...
Application Logging in Asp.Net Core | Configuration from File & C# Code | Log4Net | NLog | Serilog
มุมมอง 4.3K3 ปีที่แล้ว
Application log contains the information of the events happening in the application Logs play an important role in troubleshooting the application and to evaluate the performance Every application should maintain a good logging strategy We will discuss about some of good logging mechanisms in the video using config file and from C# code Loggers Microsoft Logger Log4Net NLog Serilog Intro 2:17 D...
Cursors in SQL Server
มุมมอง 1903 ปีที่แล้ว
Cursor is a database object to retrieve data from a result set one row at a time, instead of the T-SQL commands that operate on all the rows in the result set at one time. We use a cursor when we need to update records in a database table in singleton fashion means row by row. Definition 0:23 Scope 0:41 Data Fetch Options 1:07 Types of Locks 1:26 Cursor Types 1:47 Syntax 2:41 Practical Examples...
Triggers in SQL Server
มุมมอง 2023 ปีที่แล้ว
Triggers in SQL Server
Razorpay payment gateway integration with Xamarin Android
มุมมอง 9363 ปีที่แล้ว
Razorpay payment gateway integration with Xamarin Android
Binding a Java Library into Xamarin Android
มุมมอง 4.1K3 ปีที่แล้ว
Binding a Java Library into Xamarin Android
Transfers in Razorpay payment gateway in Asp.Net MVC Core
มุมมอง 1.5K3 ปีที่แล้ว
Transfers in Razorpay payment gateway in Asp.Net MVC Core
RazorPay Payment Gateway Integration in .NET MVC Core
มุมมอง 11K3 ปีที่แล้ว
RazorPay Payment Gateway Integration in .NET MVC Core
How to access appsettings.json file in controller
มุมมอง 2274 ปีที่แล้ว
How to access appsettings.json file in controller

ความคิดเห็น

  • @canduykhanhk16_hl93
    @canduykhanhk16_hl93 9 วันที่ผ่านมา

    Why use SqlTableDependency? If I don't use SqlTableDependency and use NotificationService to notify when the user wants in Controller, is that ok? For example, when I comment on someone's post, in CommentController I will use _notificationService.SendNotificationToClient(message, userId)

  • @priyat6197
    @priyat6197 10 วันที่ผ่านมา

    Excellent video. Very very helpful. am not getting the dialog box, ony return value from the RazorPay(options), what am i doing wrong ?

  • @canduykhanhk16_hl93
    @canduykhanhk16_hl93 11 วันที่ผ่านมา

    why dont use UserId in aspnet entity to make a connectionId. I think dont create a table HubConnection ???? Please explain for me

    • @skynetfordotnet
      @skynetfordotnet 10 วันที่ผ่านมา

      hey @canduykhanhk16_hl93, to make the video simple (to avoid join User and HubConnection table) I just used Username in HubConnection table. But in real time, we would use UserId.

    • @canduykhanhk16_hl93
      @canduykhanhk16_hl93 9 วันที่ผ่านมา

      @@skynetfordotnet Why use SqlTableDependency? If I don't use SqlTableDependency and use NotificationService to notify when the user wants in Controller, is that ok? For example, when I comment on someone's post, in CommentController I will use _notificationService.SendNotificationToClient(message, userId)

    • @canduykhanhk16_hl93
      @canduykhanhk16_hl93 9 วันที่ผ่านมา

      @@skynetfordotnet Why use SqlTableDependency? If I don't use SqlTableDependency and use NotificationService to notify when the user wants in Controller, is that ok? For example, when I comment on someone's post, in CommentController I will use _notificationService.SendNotificationToClient(message, userId)

  • @brilliantMotjiang
    @brilliantMotjiang 17 วันที่ผ่านมา

    Hi every time i am running an sqltabledependency and signalr project i get this error: System.DllNotFoundException: 'Unable to load DLL 'sni.dll' or one of its dependencies: The specified module could not be found

  • @brilliantMotjiang
    @brilliantMotjiang 18 วันที่ผ่านมา

    This is so super helpful and easy to follow thank you, how do we save these messages to the database?

    • @skynetfordotnet
      @skynetfordotnet 14 วันที่ผ่านมา

      Hey, thanks for your words. And, you can easily save the messages by calling repository in the required Hub Methods in ChatHub class. If you need more help, please let me know.

  • @imboko2008
    @imboko2008 หลายเดือนก่อน

    One of the best videos I have used. Thank you!

  • @douglass.4487
    @douglass.4487 2 หลายเดือนก่อน

    Thank you! You helped me on developing my cube solver app. I had to create a loading popup for connecting to the robot by Bluetooth. Thanks again!

  • @user-ti1ez4yo5i
    @user-ti1ez4yo5i 2 หลายเดือนก่อน

    TY for sharing.

  • @marzzuri
    @marzzuri 3 หลายเดือนก่อน

    Thank you very much for this video impressed by the attention to detail and easy to follow. Please do more. Be glad to participate in the Patreon.

    • @skynetfordotnet
      @skynetfordotnet 2 หลายเดือนก่อน

      Thank you so much for your kind words. Thanks alot.

  • @user-ft6eo2xp5m
    @user-ft6eo2xp5m 3 หลายเดือนก่อน

    Unfortunately, Sql Table Dependency has not been updated since 2020, so it can hardly be used now

  • @GauravGhosh-mb4sr
    @GauravGhosh-mb4sr 3 หลายเดือนก่อน

    Much appreciated. Can you also show to i save XML files in order to be read and rendered later by another method?

  • @inxaneofficial7756
    @inxaneofficial7756 4 หลายเดือนก่อน

    This is gold

    • @skynetfordotnet
      @skynetfordotnet 4 หลายเดือนก่อน

      Hey, thank you for your lovely response 👍

  • @ehsansharif9839
    @ehsansharif9839 4 หลายเดือนก่อน

    Thanks for this amazing tutorial 🎉

    • @skynetfordotnet
      @skynetfordotnet 4 หลายเดือนก่อน

      Thanks for watching too 🙂

  • @user-lu9ui3kc3z
    @user-lu9ui3kc3z 4 หลายเดือนก่อน

    Hi I've sent you an email with my error. Hope you reply and help me out.

    • @skynetfordotnet
      @skynetfordotnet 4 หลายเดือนก่อน

      I'll check and respond ASAP, thanks for writing Skynet.

  • @niranjanabd8895
    @niranjanabd8895 4 หลายเดือนก่อน

    🎉🎉🎉

  • @snehapatel5643
    @snehapatel5643 4 หลายเดือนก่อน

    Hi when I update something in the table, data is not getting reflected

    • @skynetfordotnet
      @skynetfordotnet 4 หลายเดือนก่อน

      Probably you're missing something. Could you share the code with skynetechs@gmail.com, we will check and come back to you.

  • @TheBelrick
    @TheBelrick 4 หลายเดือนก่อน

    This is super cool and finally got me interested in DI. Appreciated.

    • @skynetfordotnet
      @skynetfordotnet 4 หลายเดือนก่อน

      Thanks for your words!!

  • @ElyinAnuarSarriaMontenegro
    @ElyinAnuarSarriaMontenegro 5 หลายเดือนก่อน

    Al probar la conexión de mi proyecto no funciona.. Sera porque uso puerto no seguro? En su caso al momento de ejecutar su proyecto usa certificado valido! Como hizo eso?

    • @skynetfordotnet
      @skynetfordotnet 5 หลายเดือนก่อน

      Antes que nada, gracias por escribir. Lo siento, no pude entender la pregunta correctamente. La conexión no funciona, ¿significa que no puede conectarse a la base de datos? Si tienes más consultas puedes escribir a skynetechs@gmail.com

  • @user-gh2uk2qi1q
    @user-gh2uk2qi1q 5 หลายเดือนก่อน

    while creating the project i chose empty project so there is not sitemaster what should i do?

    • @skynetfordotnet
      @skynetfordotnet 5 หลายเดือนก่อน

      Probably, you can add it through Add New Item menu context.

  • @muratkecici6025
    @muratkecici6025 6 หลายเดือนก่อน

    Thank you so much. A big question mark about my project has been eliminated. Perfect solution!...

  • @laleshyagysaini4304
    @laleshyagysaini4304 6 หลายเดือนก่อน

    Very Nice

  • @matheuschumi
    @matheuschumi 6 หลายเดือนก่อน

    Nice... good video

    • @skynetfordotnet
      @skynetfordotnet 6 หลายเดือนก่อน

      Hey, thanks for the words!!

  • @nguyenduynhan3549
    @nguyenduynhan3549 8 หลายเดือนก่อน

    Thank.

  • @khiemnguyen1211
    @khiemnguyen1211 8 หลายเดือนก่อน

    Thankyou so much!!! Ur instruction help me alot ❤❤

    • @skynetfordotnet
      @skynetfordotnet 8 หลายเดือนก่อน

      Thank you so much, keep learning!!

  • @HAtemp252
    @HAtemp252 9 หลายเดือนก่อน

    Thank you so much for the vids on signalR, they have been immensely helpful <3

  • @rodrigo.olliveira
    @rodrigo.olliveira 9 หลายเดือนก่อน

    Could you teach us how to use SignalR with Oracle DB? I've looked for some tutorials and none of them helped me. Your videos are much better and easier to use for a real application. Tnks

    • @skynetfordotnet
      @skynetfordotnet 8 หลายเดือนก่อน

      Thank you for your comment. Let me try with Oracle DB.

    • @rodrigo.olliveira
      @rodrigo.olliveira 8 หลายเดือนก่อน

      @@skynetfordotnet Tnks! I'll be waiting!

  • @lestermaravilla2767
    @lestermaravilla2767 9 หลายเดือนก่อน

    i got an error when adding my SignalR Hub and Table Dependency to Singleton. Ifollow all your steps. I dont know what i am missing :/

    • @lestermaravilla2767
      @lestermaravilla2767 9 หลายเดือนก่อน

      okay i get it now. I should not call directly my DB Context inside my Hub. it Solved by creating a repository

    • @skynetfordotnet
      @skynetfordotnet 8 หลายเดือนก่อน

      I'm glad the issue has been resolved.

    • @lestermaravilla2767
      @lestermaravilla2767 8 หลายเดือนก่อน

      @@skynetfordotnet i also encounter an error in my sqltabledependency middleware. It took me 2days to resolve the problem. Im glad i found the problem and fixed it :D

  • @covenanttechs
    @covenanttechs 9 หลายเดือนก่อน

    Will the code work on VS 2019. The payment part is not initiating.!

    • @skynetfordotnet
      @skynetfordotnet 8 หลายเดือนก่อน

      Ideally it should work. Do you still facing the issue?

  • @cinarsinan
    @cinarsinan 10 หลายเดือนก่อน

    I really liked this this is absolutely good tutorial i faced some difficulties but i will solve and complete it. Can you show us to add these codes to free dashboard templates ( bootstrap templates) For example AdminLTE 3.

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      Hey, thank you and I'm glad it helps someone out there! And sure I'll try to help you as per your requirement. Could you please drop an email to skynetechs@gmail.com

  • @eventzaa
    @eventzaa 10 หลายเดือนก่อน

    thk ,the best! I have some problem. When running project. Why data in query table on some column is null. But! When stop project data in column back to normal is not null

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      Hello there, thanks for the comment. I definitely try to help you on your issue. Could you please share the code with skynetechs@gmail.com so that I can take a look and please clearly explain the problem, it helps me to get it quickly.

  • @zakariyahalfarooq6455
    @zakariyahalfarooq6455 10 หลายเดือนก่อน

    When I run the code for maui it doesn't work the error is: System.Net.Http.HttpRequestException: 'No connection could be made because the target machine actively refused it. (localhost:Localhostnumber)'

    • @skynetfordotnet
      @skynetfordotnet 8 หลายเดือนก่อน

      This could be an error because your api application may not be running. Please check once.

  • @zakariyahalfarooq6455
    @zakariyahalfarooq6455 10 หลายเดือนก่อน

    can you paste the code that you pasted into the view into the comments

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      Hello, I've already shared the code base in the description below. Please check.

  • @niteshchaurasia1332
    @niteshchaurasia1332 10 หลายเดือนก่อน

    This is awesome. Thanks for sharing..

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      Thank you very much!!

  • @mikhailsandigan1424
    @mikhailsandigan1424 10 หลายเดือนก่อน

    can you make this with code first approach

  • @beelzaBob
    @beelzaBob 10 หลายเดือนก่อน

    Dude, you're saving me an uncountable amount of time with this fantastic demo. I mean it -- I have no idea how long it would take me to learn this stuff; and it's not just the data management, it's little things... like how Flyout menus work. Or logging. Just know that some random person out there in the universe owes you.

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      I really glad to read this comment and I'm equally happy that my demo is helpful to you and others. Your words give me boost to make more such videos. Thank you!

  • @gkmnada
    @gkmnada 11 หลายเดือนก่อน

    First of all, thank you very much for the video. Thanks to you, I applied SignalR and SqlDependency in my project. Everything was working properly but then I changed my query method on the Hub side. The change I made on the table side was to use a relationship. Then it gave an error. This is the error in the console, Error: Connection disconnected with error 'Error: Server returned an error on close: Connection closed with an error.'. and Error: Server returned an error on close: Connection closed with an error. function InvokeTaskList() { connection.invoke("SendTaskList").catch(function (error) { console.log(error); return console.error(error.toString()); }) } This is where he catches the error.

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      I apologize for the delay, could you please share the code with me at skynetechs@gmail.com? It helps me to dig into the code and see what's happening inside.

    • @gkmnada
      @gkmnada 9 หลายเดือนก่อน

      @@skynetfordotnet I sent mail. Thank you for your support.

    • @skynetfordotnet
      @skynetfordotnet 8 หลายเดือนก่อน

      Could you re-share the code please? The link you already shared has expired.

  • @rushikeshsuradkar7797
    @rushikeshsuradkar7797 11 หลายเดือนก่อน

    what will be the process for Binding iOS libraries?

    • @skynetfordotnet
      @skynetfordotnet 10 หลายเดือนก่อน

      I apologize for the delay. Probably this may help you learn.microsoft.com/en-us/xamarin/ios/platform/binding-objective-c/

  • @waqasmumtaz6109
    @waqasmumtaz6109 11 หลายเดือนก่อน

    I was so confused about signalR how it works properly for real time updates. But i will do it now thanks let me watch and practice

    • @skynetfordotnet
      @skynetfordotnet 11 หลายเดือนก่อน

      I'm very happy to read your comments and I'm sure it will help you. Keep visiting!!

  • @waqasmumtaz6109
    @waqasmumtaz6109 11 หลายเดือนก่อน

    Subscribed i wish u alos explain concepts by ur voice

    • @skynetfordotnet
      @skynetfordotnet 11 หลายเดือนก่อน

      Thank you very much for your suggestion. I will definitely plan for that.

  • @lcppb
    @lcppb 11 หลายเดือนก่อน

    Brasil na àrea...Parabens, THE BEST

  • @OneClickFormat
    @OneClickFormat ปีที่แล้ว

    You are a genius.... Subscribed man ! Hats OFF ! Respect !

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Thank you very much my friend and I'm happy that my tutorial is helping you!!

  • @khanhuynh9628
    @khanhuynh9628 ปีที่แล้ว

    Love it

  • @ahmedgondo9512
    @ahmedgondo9512 ปีที่แล้ว

    Hi I followed the vid but my new table is not showing any data, please help

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Sure, can you share the code to skynetechs@gmail.com?

  • @oktjona
    @oktjona ปีที่แล้ว

    Add notifications reminder based on time

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Sure my friend, I'll try that.

    • @oktjona
      @oktjona ปีที่แล้ว

      @@skynetfordotnet thank you.i would love to learn it because I ma developing a patient reminder app

    • @oktjona
      @oktjona ปีที่แล้ว

      @@skynetfordotnet I would to know how to set a start and end time can I have a video session with ue?

    • @skynetfordotnet
      @skynetfordotnet 3 หลายเดือนก่อน

      Yeah sure. If you still need any assistance, plz contact skynetechs@gmail.com. we will connect definitely

  • @AmitKumar-zb2ej
    @AmitKumar-zb2ej ปีที่แล้ว

    Thanks brother ❤

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      You're most welcome 😊👍

    • @AmitKumar-zb2ej
      @AmitKumar-zb2ej ปีที่แล้ว

      Brother I have an issue, so when I public my project on server it gives an error : failed to connect to the websocket/ Negotiations something like this

    • @AmitKumar-zb2ej
      @AmitKumar-zb2ej ปีที่แล้ว

      failed to complete negotiation with the server: error: : status code '404' either this is not a signalr endpoint or there is a proxy blocking the connection. failed to start the connection: error: websocket failed to connect. the connection could not be found on the server, either the endpoint may not be a signalr endpoint, the connection id is not present on the server, or there is a proxy blocking websockets. if you have multiple servers check that sticky sessions are enabled.

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Your issue would be blocking the connection. Please check that your requests are allowed in the server. Your server might blocking the requests.

  • @cissemy
    @cissemy ปีที่แล้ว

    Excellent

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Thanks dear 😊

    • @cissemy
      @cissemy ปีที่แล้ว

      @@skynetfordotnet Can you make videos about Maui Blazor ?

    • @yayusuwardi8934
      @yayusuwardi8934 ปีที่แล้ว

      @@cissemy I agree my frend..........

    • @oktjona
      @oktjona ปีที่แล้ว

      Can u add notification reminder

  • @codingislife6387
    @codingislife6387 ปีที่แล้ว

    sir please make advance chat app using 1 to 1 private , group whise chat application using MVC signalR please. please please please please please

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Yes, I have a plan to develop the chat application. Soon or later, I will build a chat application.

    • @codingislife6387
      @codingislife6387 ปีที่แล้ว

      @@skynetfordotnet Thanks Sir. May u live long sir.

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Thanks a lot 🙏

  • @codingislife6387
    @codingislife6387 ปีที่แล้ว

    sir please make advance chat application 1 to 1 private , 1 to many group chat please. please please sir please please 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Yes, I have a plan to develop the chat application. Soon or later, I will build a chat application.

  • @SalmanShafiq-ho1th
    @SalmanShafiq-ho1th ปีที่แล้ว

    can I track database table change in ef core by which i can send update grid?

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      I believe, yes. You can try that with ef core. If you face any difficulties, let me know. I'm open to discuss further on this.

  • @Keerthana_Pollachi_Vlogs
    @Keerthana_Pollachi_Vlogs ปีที่แล้ว

    Hi bro I don't have an Android Binding Library (Xamarin) where can I find? I am using Visual studio community 2022 version 17.6.2

    • @skynetfordotnet
      @skynetfordotnet ปีที่แล้ว

      Hello there, you must install ".NET Multi-platform App UI development" workload. You can use Visual Studio Installer to modify your Visual Studio 2022 version and then choose above workload. I hope you'll get "Android Binding Library (Xamarin)" project template.