P
Paul Speranza
I am new at this so please bear with me.
I have a table called ApplicationUser which mapped fine into EF and I can
insert using my CreateUser proc. I have another proc called GetUserByName and
I imported that to a function so in my code I can do this :
ObjectResult<ApplicationUser> query =
context.GetUserByUserName(userName);
ApplicationUser user = query.ToList().First();
I have another proc called SetLoginAttempts(id, attempts). I have done the
same import but it will not show up as a method of context. Any ideas as to
what I am doing wrong?
Thanks
I have a table called ApplicationUser which mapped fine into EF and I can
insert using my CreateUser proc. I have another proc called GetUserByName and
I imported that to a function so in my code I can do this :
ObjectResult<ApplicationUser> query =
context.GetUserByUserName(userName);
ApplicationUser user = query.ToList().First();
I have another proc called SetLoginAttempts(id, attempts). I have done the
same import but it will not show up as a method of context. Any ideas as to
what I am doing wrong?
Thanks