views:

12

answers:

2

Is there something similar with spring jdbctemplate for c# ?

I am not seeking for jdbctemplate for c# but something that works very similar like jdbctemplate.

I am familiar with ado net and linq to entities, but I like the concept of jdbctemplate.

A: 

I'm not a Java guy, but I took a look at the jdbctemplate to see what it is and see if I could think of anything similar in .NET.

I may be off, but to me that looks somewhat similar to the Database class in the Microsoft.Practices.EnterpriseLibrary.Data Application block. It's not an exact match, but something similar in concept in that it is meant to abstract database access and make it a bit simpler.

David Stratton
+1  A: 

Well, you have ADOTemplate in Spring.NET:

http://www.springframework.net/doc-latest/reference/html/ado.html#ado-adotemplate-intro

gpeche