Am writing a new C# web forms app and there is a strong possibility it will be deployed on a web server that only supports .Net 2.0.
I’d love to be able to use something like Dapper or PetaPoco for data access and manipulation, but it appears they both have requirements for .Net 3.0 or higher.
Are there similar alternatives that work on .Net 2.0?
I’m aware of SubSonic and NHibernate, but I really am only looking for something to query the DB and quickly stuff the results in POCOs.
Thanks!
Couldn’t find one that worked well in .Net 2.0 environment. Will be writing the app for 4.0 and deploying on a different server.