Best way to model different options in EF Core
I have a class that's used to define the integration parameters for a particular process. Now, I have integration options A,B,C, etc each of which correspond to different tables with different IDs I need to populate on my class.
ex
Now, only 1 integration is supported for each instance of
ex
Now, only 1 integration is supported for each instance of
myclass. I could in theory define each available integration's FK references in this table, but there must be a better way to do this?