private void btnSalvar_Click(object sender, EventArgs e) { if (txtLocus.Text != string.Empty && txtDescricaoLocus.Text != string.Empty) { try { banco = new BancoLocalEntities(); Locus locus = new Locus(); locus.idtabela = int.Parse(cbTFA.SelectedValue.ToString()); locus.idlocus = txtLocus.Text; locus.descricaoLocus = txtDescricaoLocus.Text; //Colocar codigo para pegar alelos. banco.Locus1.AddObject(locus); banco.SaveChanges(); MessageBox.Show("Locus cadastrado com sucesso!","Informação",MessageBoxButtons.OK,MessageBoxIcon.Information); this.Dispose(); } catch(Exception ex) { MessageBox.Show("Erro na gravação do locus!\n" + ex.Message, "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); this.Dispose(); } } else { MessageBox.Show("Digite um nome e uma breve descrição do locus.","Informação",MessageBoxButtons.OK,MessageBoxIcon.Information); } }
/// <summary> /// Deprecated Method for adding a new object to the Locus1 EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToLocus1(Locus locus) { base.AddObject("Locus1", locus); }
/// <summary> /// Create a new Locus object. /// </summary> /// <param name="idlocus">Initial value of the idlocus property.</param> public static Locus CreateLocus(global::System.String idlocus) { Locus locus = new Locus(); locus.idlocus = idlocus; return locus; }