Click here to Skip to main content
15,916,030 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I have search the internet a lot and I have looked at all source codes provided by developers for implementing push notification. but what I am looking for is a simplest way possible for the implementation of the push notification. I have only few understanding of the concepts which I have not found a lot about these topics. All what I know is that signal are provides a way of real time data and SQL dependency is used to monitor changes. I completely know how to set up the environment for such a project but I cant really understand the concepts of what each line of the proposed solution would do therefore I need full implementation with good explanation if possible.

What I have tried:

I have searched the internet a lot and I implemented most of the solutions out there
Posted
Updated 20-Jan-20 13:47pm
v2

1 solution

I have search the internet a lot and I have looked at all source codes provided by developers for implementing push notification. but what I am looking for is a simplest way possible for the implementation of the push notification. I have only few understanding of the concepts which I have not found a lot about these topics. 
This article from a few years ago seems pretty simple to me:
Creating Real-Time System Notifications with SignalR[^]

All what I know is that signal are provides a way of real time data and SQL dependency is used to monitor changes. 
This is not a function of SignalR.

What you are referring to I am going to call a System
1. This is a system that monitors changes.
2. This system chooses to use SQL as a data repository.
3. This system also chooses to broadcast this data via SignalR.

I completely know how to set up the environment for such a project but I cant really understand the concepts of what each line of the proposed solution would do therefore I need full implementation with good explanation if possible.
I would suggest that what you do is research on the individual components of the solution to learn how each part works individually. None of these components do not require the others on their own; only how they are being implemented in your solution does that come into play.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900