When I am re-building a solution I see the following warning:
warning CS0108: 'ISiriusSqlContext.SaveChanges()' hides inherited member 'IContext.SaveChanges()'. Use the new keyword if hiding was intended.
The line of code is in the auto-generated (I assume) file:
int SaveChanges();
That file is based on the IContext interface that does have that same line of code.
I am not sure where this line of code is coming from into the specific interface class and how that warning can be fixed? I checked .tt file and I don't see any SaveChanges in there, so it's coming from other place.
Thanks.
warning CS0108: 'ISiriusSqlContext.SaveChanges()' hides inherited member 'IContext.SaveChanges()'. Use the new keyword if hiding was intended.
The line of code is in the auto-generated (I assume) file:
int SaveChanges();
That file is based on the IContext interface that does have that same line of code.
I am not sure where this line of code is coming from into the specific interface class and how that warning can be fixed? I checked .tt file and I don't see any SaveChanges in there, so it's coming from other place.
Thanks.