Is it possible to use all 开发者_Go百科features of Linq to SQL for a MySQL database?Linq to Sql is specific to SQL Server. Consider using Linq to Entities or NHibernate.
How can I improve this username/password checking? [AcceptVerbs(HttpVerbs.Post)] public ActionResult Login(FormCollection collection)
I have a scenario where I am inheriting from an abstract class in my partial linq to sql auto generated class implementation. My base abstract class has an abstract property called ID which I have fla
I hear a lot of linq-to-sql bashing and how people will unknowingly abuse it. But how is linq-to-sql being abused?
I have a simple website which is using C# and Linq to SQL to read an write to the DB. Everything works fine on my local box but now that I have setup on my hosting environment I am getting a \"Securit
I need to write a forum application for a friend\'s web site. I want to write it in C# 3.0 against the ASP.NET MVC framework, with SQL Server database.
Without going into whether this is a good or bad idea: Is it possible to store a LINQ-to-SQL domain object in the ASP.NET Session, when the session is out-of-process?
I see a lot of code similar to the following var customrs = MyDataContext.Customers.Where(...); if (!String.IsNullOrEmpty(input)) {
I have this method, that will be called against from a WCF Client, but for my testing, I\'m uisng a local \"add project reference.\" I\'m getting the error that I cannot call the DataContext after it\
my query is : var ReadAndUnreadMessages = (from m in MDB.Messages orderby m.Date descending where m.ID_Receive == (Guid)USER.ProviderUserKey && m.Delete_Admin == false