User100248066 posted
So with no replies in 16 hours, I am digging deeper into the code and uncovering some interesting things which is starting to give me a path to do what I want, I think... I would love to get a second opinion on it:
When wiring up the Data Protection, it requires a DB Context that MUST implement IDataProtectionKeyContext. The interface requires a DbSet<DataProtectionKey> DataProtectionKeys { get; }. This fact leads me to think the best solution is
to actually implement a custom Entity Framework Data Provider that hits a service rather than a DB for this one case.
Generally speaking it seems like a lot of work to create a custom Data Provider, but considering how little it will need to do... I am thinking it won't be too hard. Any thoughts?