Estou fazendo um projeto que utiliza exatamente este conceito de chave composta:
Possuo uma classe Cliente, uma classe Telefone. Ao tentar inserir no contexto, recebo a seguinte exceção:
System.InvalidOperationException: 'The instance of entity type 'UsuarioTelefone' cannot be tracked because another instance of this type with the same key is already being tracked. When adding new entities, for most key types a unique temporary key value will be created if no key is set (i.e. if the key property is assigned the default value for its type). If you are explicitly setting key values for new entities, ensure they do not collide with existing entities or temporary values generated for other new entities. When attaching existing entities, ensure that only one entity instance with a given key value is attached to the context.'
Pelo que pude constatar, os Id's de ambas as classes estão adicionadas com zero. Como os Id's são iguais, causou essa exceção.
Como posso resolver esta questão?
Desde já agradeço!