שגיאה על DbContext.Context.SaveChanges(); ב C#
-
ערב טוב,
יש לי פונקציה של הכנסת נתונים לדאטה בייס ב C#public static void InsertClient(string id, string firstname, string lastname) { Client client = new Client(); client.ID = id; client.FirstName = firstname; client.LastName = lastname; DbContext.Context.Clients.Add(client); DbContext.Context.SaveChanges(); }
נותן לי את השגיאה הבאה על SaveChanges:
CS1061 C# does not contain a definition for 'SaveChanges' and no accessible extension method 'SaveChanges' accepting a first argument of type could be found (are you missing a using directive or an assembly reference?)
לפי איך שידוע לי SaveChanges זה לא נתון שאני צריכה להכניס אצלי ב CLASS של DbContext
יש מישהו שמתמצא יוכול לומר לי מה הפתרון של זה??
תודה רבה רבה!!!