Reputation: 1701
I want to use Azure DocumentDb in my ASP.NET 5 project and it seems that DocumentDb .NET SDK doesn't work with DNX yet. Is it so? And if Yes maybe there is a workaround here?
Upvotes: 2
Views: 883
Reputation: 9523
I don't know the status of work on supporting DNX, but assuming that's not going to come in time, I can think of several ways to work around it:
Upvotes: -1
Reputation: 2728
You can get ASP.NET 5 to target the full .NET Framework as opposed to Core. The biggest advantage of targeting Core is that it would allow you to run outside of Windows, but if this is not a requirement for you then the full framework should be fine.
Upvotes: 3