Hi,
I have the following code for excluding a property from update in EF Core but it doesn't seem to work.
public void Update(Client client) { context.Entry<Client>(client).Property(x => x.DateTimeCreated).IsModified = false; context.Update(client); }
Anyone knows how it is done in EF Core