Ejemplo n.º 1
0
        public async Task <TEntity> AgregarAsincronamente(TEntity EntidadAAgregar)
        {
            try
            {
                ConjuntoEntidades.Add(EntidadAAgregar);
                await _contexto.SaveChangesAsync();

                return(EntidadAAgregar);
            }
            catch (System.Data.Entity.Validation.DbEntityValidationException e)
            {
                foreach (var eve in e.EntityValidationErrors)
                {
                    System.Diagnostics.Debug.WriteLine("Entity of type \"{0}\" in state \"{1}\" has the following validation errors:",
                                                       eve.Entry.Entity.GetType().Name, eve.Entry.State);
                    foreach (var ve in eve.ValidationErrors)
                    {
                        System.Diagnostics.Debug.WriteLine("- Property: \"{0}\", Error: \"{1}\"",
                                                           ve.PropertyName, ve.ErrorMessage);
                    }
                }
                throw;
            }
        }
Ejemplo n.º 2
0
        /******************************************************************************************************************************************/
        /**************************************************  Metodos Asincronicos       **********************************************************/
        //public Transaccion()
        //{
        //    _contexto = new FoliacionInterfacesCargadasEntities();
        //}

        public async Task GuardarCambiosAsincronicos()
        {
            await _contexto.SaveChangesAsync();
        }