I have configured mini profiler with asp.net mvc application. I also want to profile my db so I hooked it with L2S datacontext as in this example.
I have a C# windows service that communicates with a SQL Server 2008 database via LINQ. Within LINQ, I have a few stored procedures defined. My service basically wakes up every couple of minutes and l
This question already has answers here: Closed 11 years ago. Possible Duplicate: Why are my LINQ INSERTS not persisting in SQL Server CE 3.5?
I have one Linq to SQL query that simply joins three tables and then performs grouping. Here is the query:
I was wonder what would be the best way to log changes made to objects created by linq. I have searched around and this is what i came up with:
I just deployed a users and roles asp database to a website and I\'m getting this exception Object reference not set to an instance of an object.
I am using Linq-to-SQL with Unity in a Repository pattern.I am trying to add an in开发者_开发知识库terceptor for object security on the repository method [Securable]IQueryable<TEntity> List<T
This code throws an error \"Format exception. String must be exactly one character long\". I cant see why. Any ideas?
I\'m returning a list of database records; Dim rsPublicChilds As System.Data.Linq.ISingleResult(Of spGetPublicObjectsResult) = Nothing
I came across linq query which ends in (...).ToList().AsQueryable(). I know the use of .ToList() and .AsQueryable() separately. But, what is the outcome if both are combined? When do we need to combin