I have been requested to implement a login form into a friend’s Visual Basic .NET application. He specifically requested that I should do this using LINQ to compare the input to a table in an Access database. I don’t really know why he imposed these restrictions, but who am I to judge?
However, the problem is I am not overly familiar with VB .NET, or LINQ. Could anyone tell me what the most efficient way would be to implement this?
Thank you.
If you Google for tutorials on VB.NET and LINQ, there is lot’s of information out there. Your login chec is going to work something like this with VB.Net/LINQ:
ctx.Userswould be replaced with whatever the name of the User table is in the Access database.u.UserNameandu.Passwordwould be replaced with whatever the field names are in your users table for the user’s login and password information