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();
        }