System.Data.Entity.Internal.LazyInternalContext.SaveChanges C# (CSharp) Метод

SaveChanges() публичный Метод

Saves all changes made in this context to the underlying database, but only if the context has been initialized. If the context has not been initialized, then this method does nothing because there is nothing to do; in particular, it does not cause the context to be initialized.
public SaveChanges ( ) : int
Результат int
        public override int SaveChanges()
        {
            return ObjectContextInUse == null ? 0 : base.SaveChanges();
        }