and I keep getting these errors .
There is at least one compilation error.
library.db.interface.cs(13,20): error CS0118: ‘Customer’ is a namespace but is used like a type
library.db.cs(28,27): error CS0118: ‘Customer’ is a namespace but is used like a type
library.db.cs(28,49): error CS0266: Cannot implicitly convert type ‘System.Data.Entity.Core.Objects.ObjectSet<Erp.Tables.Customer>’ to ‘System.Linq.IQueryable<EFx.Customer>’. An explicit conversion exists (are you missing a cast?)
library.db.tracker.cs(24,44): error CS0118: ‘Customer’ is a namespace but is used like a type
Yes I did and I think I found that the issue was that the library name was also called Customer so it caused a issue in the C# code to where the code was thinking I was calling the library called Customer and not the table. I made a new library with a different name and it does not give any errors now.