I'm doing some statistical stuff for a university and I've got a question. I've got a starter background in C++ and read up on some C# and since I have access to the entire MS suite I think I'll go ahead and use the .NET framework. My question is, I would like to make my database searchable online. I'll fancy it up with some jQuery but for the most part, a开发者_如何学JAVAll I'll need is permissions to view or write and all of the queries one might like to run. My question: is there a specific method that would be more expedient for developing this? The MVC framework or something else?
For SQL Server, I think LinqToSQL provides the quickest, most convenient direct access to your data from C#. Start with a Linq data context, and then you can manipulate records in your database via strongly typed C# objects.
精彩评论