LINQ to SQL is a component of .NET Framework version 3.5 that provides a run-time infrastructure for managing relational data as objects stored in Microsoft SQL Server.
I'm trying to use LINQ to SQL to select a few specific columns from a table and return the result …
asp.net linq-to-sqlTable: id userid friendid name status 1 1 2 venkat false 2 1 3 sai true 3 1 4 arun false 4 1 5 arjun false if user sends userid=1,friendids=2,4,5 status=…
c# linq entity-framework linq-to-sqlSo I have managed to get this query working List<string> listStatus = new List<string>() ; listStatus.…
linq linq-to-sql where-clauseIs this query equivalent to a LEFT OUTER join? //assuming that I have a parameter named 'invoiceId' of type int …
.net database linq linq-to-sqlI have the following SQL, which I am trying to translate to LINQ: SELECT f.value FROM period as p …
c# sql linq linq-to-sql outer-joinI have to perform the following SQL query: select answer_nbr, count(distinct user_nbr) from tpoll_answer where poll_…
c# linq linq-to-sqlI have a function where I get a list of ids, and I need to return the a list matching …
linq linq-to-sqlI have seen lots of examples in LINQ to SQL examples on how to do a join in query syntax …
linq-to-sql ef-fluent-apiI'm trying to do a query like so... query.Where(x => !string.IsNullOrEmpty(x.PropertyName)); but it fails... so …
linq linq-to-sql