I have added new property in my Entity Model as the new column has got added in DB table. But In that column might or might be there in other client database. So, How handle this? I have tried modelBuilder.Entity<Customer>().Ignore(customer => customer.FullName);
But it's not ignoring the property in entity. Because we have entity mapped class so it is not ignoring it.
Solution please?