In my system has many forms for insert and edit database registers
But before to save date in database, I need validate any camp, validate it values is empty or not, validate TextBox.Text lenght, etc...
I validated they with many many if's
if (tbName.Text.Equals("")) { }
if (tbPass.Password.Equals("")) { }
if (tbEmail.Text.Equals("")) { }
if (tbTelephone.Text.Equals("")) { }
if (tbNome.Text.Length < 4) { }
if (tbPass.Password.Length < 5) { }
if (!tbEmail.Text.Contains('@')) { }
but it is very no efficiency and I don't know any other solution for this
What solution is usual for this?
This is by hand so it will have some syntax errors
You will probably also want to implement iNotifyPropertyChanged
Then Validation