[Solved] How to add SQL data into variable?
Here is a pattern to follow, place your data operations in a separate class and call in your form. Here Login class could be whatever you want to call it with required properties. public class Login { public int Id { get; set; } . . . } Mocked data class, here since select * … Read more