Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# audit overriding SaveChanges() method. How to find out foreign keys of an entity and its value from table

I m overriding the SaveChange() method. What i want is that to log all changes made to an entity to database in simple text like "abc updated Name john to doe, ..." etc I have achieved the functionality but when there is a foreign key in an entity going to update like country_Id which points out the table Country it generates text like "abc updated Country_Id 1 to 3, ..." thats what I do not want it should be like this "abc updated Country Canada to Australia, ..."

So to achieve this it should know the foreign keys and its value

My Code is :

 public override int SaveChanges()
    {
        List<string> listChanges = new List<string>();
        List<string> listTable = new List<string>();

        var objectStateManager = ((IObjectContextAdapter)this).ObjectContext.ObjectStateManager;
        IEnumerable<ObjectStateEntry> changes =
            objectStateManager.GetObjectStateEntries(EntityState.Modified | EntityState.Added | EntityState.Deleted);


        foreach (ObjectStateEntry stateEntryEntity in changes)
        {

            var modifiedProperties = stateEntryEntity.GetModifiedProperties();
            foreach (var propName in modifiedProperties)
            {
                if (Convert.ToString(stateEntryEntity.OriginalValues[propName]) != Convert.ToString(stateEntryEntity.CurrentValues[propName]))
                {
                    listTable.Add(stateEntryEntity.EntityKey.EntitySetName);
                    listChanges.Add(propName + " From " + Convert.ToString(stateEntryEntity.OriginalValues[propName]) + " to " + Convert.ToString(stateEntryEntity.CurrentValues[propName]));

                }


                //System.Console.WriteLine("Property {0} changed from {1} to {2}",
                //     propName,
                //     stateEntryEntity.OriginalValues[propName],
                //     stateEntryEntity.CurrentValues[propName]);
            }
        }
         return base.SaveChanges();
    }
like image 454
Mike Avatar asked Mar 21 '17 07:03

Mike


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

Is C programming hard?

C is more difficult to learn than JavaScript, but it's a valuable skill to have because most programming languages are actually implemented in C. This is because C is a “machine-level” language. So learning it will teach you how a computer works and will actually make learning new languages in the future easier.


1 Answers

There is a feature to achieve this, i used changetracker for track changes and log.You get every changes right before dispose your context so, for briefly you can build like this;

public override int SaveChanges()
        {
            foreach (var history in ChangeTracker.Entries()
                .Where(e => e.Entity is IModificationHistory && (e.State == EntityState.Added ||
                                                                 e.State == EntityState.Modified))
                .Select(e => e.Entity as IModificationHistory)
            )
            {
                history.DateModified = DateTime.Now;
                if (history.DateCreated == DateTime.MinValue)
                    history.DateCreated = DateTime.Now;
            }
            var result = base.SaveChanges();
            foreach (var history in ChangeTracker.Entries()
                .Where(e => e.Entity is IModificationHistory)
                .Select(e => e.Entity as IModificationHistory)
            )
                history.IsDirty = false;
            return result;
        }

Also you can specify your entry right before base.savechanges()

This is my history interface

 public interface IModificationHistory
    {
        DateTime DateModified { get; set; }
        DateTime DateCreated { get; set; }
        bool IsDirty { get; set; }
    }
like image 196
orhun.begendi Avatar answered Oct 11 '22 08:10

orhun.begendi