Ядро Entity Framework: Множество отношений «Один ко многим» между двумя сущностями
#c# #entity-framework-core Вопрос: Я пытаюсь запустить модель перевода, имея public class Item { public Item { TextTranslationID = Guid.NewGuid(); DescriptionTranslationID = Guid.NewGuid(); TextTranslations = new HashSet<Translation>(); DescriptionTranslations = new HashSet<Translation>();…