I have a facebook share button in my View,
<div class="fb-share-button"
data-href="https://localhost:5001/venue/details/@Model.Id"
data-layout="button_count" data-size="large">
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Flocalhost%3A5001%2Fvenue%2Fdetails%2F@Model.Id%3Fq%3Dgaurav-acharya&src=sdkpreparse" class="fb-xfbml-parse-ignore">
Share
</a>
</div>
So When a user clicks on It I want to save some data in Shares Tableof my Database, lets say i want to call controller method "https://localhost:5001/venue/share?vid=88.
In my Controller i have
public void Share(int vid)
{
Share share = new Share();
share.UserName = GetUserName(_userManager);
share.VenueId = vid;
Console.WriteLine(vid);
_context.Shares.Add(share);
_context.SaveChanges();
}