I've got an old web forms that is to be extended with some ajax functionality. I've upgraded to .net 4, but wondering what approach to go for when creating new services.
I don't have to much experience with writing wcf services, and it seems way much simpler just writing a the service using a simple cshtml file like this:
@{
var db = Database.Open("MyConnectionString);
var data = db.Query("SELECT * FROM MyTable WHERE Col1 = @0", '123');
Json.Write( new { results=data}, Response.Output);
}
What are the pitfalls using this strategy compared to creating a wcf service?
Thanks for any help
Larsi