Hi,
This is my code :
[Route("status")]
public Notification UpdateNotificationStatus(int [] NotificationId)
{
throw new NotImplementedException();
}
public Notification UpdateNotificationStatus(int [] NotificationId)
{
throw new NotImplementedException();
}
This is my table :
So when I passing api uri like this :
/members?notificationid=1,2,3,4 Then update the table
IsRead is true based on by passing NotificationID's.
Using Stored Procedure or Linq to Sql.
Please give me a code for that.
Thank you.

Replies
Know the answer? Post it — somebody with the same question will find it here.