I have an application where the userid should be available in all the forms in Wpf. I have written the code like this
In form1 I wrote like this
var login =
context.Logins.FirstOrDefault(
x => x.EmailAddress == email && x.Password == password);
if (login != null)
{
fp.Show();
Application.Current.Properties["UserId"] = login.Id;
Close();
}
In the form2 I should be accessible to the userid so I wrote the code like this
var userid = (int) Application.Current.Properties["UserId"];
int id = userid;
I am getting system null reference exception :{"Object reference not set to an instance of an object."}
any help