I have an entity with...entity.Property(f => f.Id).HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
...because for some reason, I need to enter some id's manually.
is it possible to automatically add the next available id (int) if the id is not p...