Reputation: 113
I am using ADO.NET for .net framework 4.5 and that saying "oracle connection has been deprecated" but I am able to run the application.
What will happen if I use that for production? Even, one of my application running in the same message on production.
Upvotes: 1
Views: 4000
Reputation: 1625
Nothing will happen as your running .Net Framework remains the same.
The deprecated
annotations are here to warn you that in near future, a feature (class, property, method ...) will be removed. Thus, maybe your application won't be able to run anymore on .Net Framework 10.0
Upvotes: 2