Create LINQ query command to get accountBalance in Accounts table where Name is equal to usernametextBox and pin is equal to pintextBox and Type is equal to string c
var accountBalance = from x in Account where x.Name = usernametextBox && x.pin = pintextBox && x.Type = C select x.Balance;