LINQ to SQL is a component of .NET Framework version 3.5 that provides a run-time infrastructure for managing relational data as objects.

learn more… | top users | synonyms (3)

0
votes
2answers
71 views

Sum in Linq to Sql not returning a value

I'm looking for a query to return the sum of all payments against an invoice ID - however, if there are no payments noted, the query below returns null. Is there any way of it returning 0 instead of ...
0
votes
2answers
53 views

c# linq fill not mapping properties

I am using the Entities Framework Code First and I have two entities: public class Product { public int ProductID { get; set; } public decimal Price { get; set; } public int ...
2
votes
1answer
25 views

How to write a Linq query equivalent to this SQL

I'm trying to figure out how to write a linq query that will return equivalent results to the sql query below. The problem I'm having has to do with the two select count queries included in the ...
0
votes
2answers
56 views

linq-to-sql SelectMany() troubles

I'm trying to find a more elegant way of pulling information from my db to my web application. Currently I pull all data in my table and use only two columns' data. It was suggested that I look into ...
0
votes
0answers
17 views

Ling-to-sql - PreProcessQuery

I have a Lightswitch LinQ to SQl problem. Basically, I have two tables Customers and Invoice with a one to many relations (Customer One --> Invoice Many). I am trying to do a Customer query by ...
0
votes
1answer
22 views

Concatenate Fields For Join Clause

I'm trying to query a third party database that uses the concatenation of two fields as the key to another table. I tried to use the following linq-to-sql query but got the runtime error 'LINQ to ...
2
votes
1answer
65 views

LINQ against dynamic object

I am implementing an import tool that reads data from file and stores them to a database. We have one database in two different editions: a "full" edition and a "lightweight" edition. The lightweight ...
0
votes
2answers
44 views

How to do this SQL in LINQ?

I would like to know how i could do the following using LINQ (C#). All help would be much appreciated, thanks. DECLARE @productId int INSERT INTO product(title, studioId, developerId, publisherId, ...
0
votes
1answer
22 views

How to write lambda (linq) expression for sql?

I have an Sql statement for which I need go generate corresponding Lambda Expression (Linq). Here is the SQL Declare @CurrentUserId as int Declare @CurrentDate as datetime Set @CurrentDate = ...
0
votes
1answer
55 views

Sql Where Contains textbox skillevel and skillname

My users can save skill level from 1 star to 4 stars and skillname for example C#,C++ and so an My query looks like this var searchTechSkill = from p in db.EMPLOYEES join ets in ...
0
votes
0answers
16 views

“FormatException was unhandled” deleting from database using linq-to-sql

I've been reading around linq-to-sql CRUD operations, and from what I can tell, I'm going about this the correct way, but there is something wrong in the details. my notes collection is not connected ...
0
votes
0answers
11 views

How to perform Union between linq using join result with stored procedure result

I am using two queries one is executing using linq and other from stored procedure linq query is : var result = (from anode in Context.tbl_ge_anodes join clients in ...
-2
votes
4answers
60 views

Fetch distinct object from a collection using GroupBy on a single column in LINQ to Objects/SQL/Entity

I have a Database table Country with example data as follows: CountryId CountryName Year 1 UK 2001 2 UK 2003 3 ...
0
votes
2answers
38 views

c# linq to sql iterating through left join results

I have a query that looks like this: var emp = (from activeWO in context.ActiveWOs join activeWOUpdated in context.ActiveWOUpdatedTimes on activeWO.PW_ID equals ...
1
vote
1answer
65 views

How can I convert sql to linq

This is my SQL query SELECT sys.sysobjects.name Name, sys.foreign_keys.* FROM sys.foreign_keys inner join sys.sysobjects on sys.foreign_keys.parent_object_id = sys.sysobjects.id WHERE ...
1
vote
1answer
20 views

LINQ to SQL exception when converting nullable value to non-nullable using Convert

Problem Given the following: class MyClass { public DateTime DateTime { get; set; } } and a queryable, where MyTable.NullableDateTime is a DateTime? mapped to an SQL datetime: ...
0
votes
1answer
62 views

left join linq is not working

i have this linq query var x = (from d in detalle from n in nlj.DefaultIfEmpty() join nd in nuevodetalle on new { d.ope_idsku ,d.ope_tipo } equals new {nd.ope_idsku ,nd.ope_tipo }into nlj from n in ...
1
vote
2answers
30 views

how to show the following output in wpf datagrid depending on a condition

I am displaying the Processing Time data in a datagrid as follows using the following statement var duration_query = this.db.Events .Where(p => ...
-1
votes
2answers
65 views

updating multiple records in database with linq to sql without loop, is it possible?

ok, let say i want to update multiple rows in database at once, without looping, if we do it with loop, it might look like this : var products = (from prod in context.Products where ...
0
votes
1answer
25 views

Linq2Sql Equivalent of DataContext.ExecuteMethodCall in Entity Framework

in my linq 2 sql i had a SP with multple resultsets and a code [Function(Name = "GetHomedashboard")] [ResultType(typeof(TopSearch))] [ResultType(typeof(TopVacancy))] public IMultipleResults ...
0
votes
0answers
16 views

when i drag and drop stored procedure onto my dbml file(VS 2010) and save it creates another designer1.cs file

In my project i have data-access layer which contains dbml file(named test.dbml) used to drag and drop stored procedure and tables. 2 days ago strange thing happened when i drag and drop stored ...
1
vote
0answers
64 views

Linq to SQL for EntityFramework.Extensions Update() method with ?? operator

I have a method with several optional parameters that then updates the database using a LINQ query. I would like to update the record such that the optional fields are only saved if they were supplied ...
2
votes
0answers
32 views

Automapper Issue: Recursive Projection LinqToSql Stackoverflow Exception

Using the above LinqToSql entity classes and trying to map to like-named DTO objects throws a Stackoverflow Exception. I've read around and this appears to be a problem with the Child/Parent ...
0
votes
1answer
20 views

Sql Recursion via CTE over LINQ SelectMany

Firstly I'm fairly well versed in LINQ queries, but a complete novice at writing direct SQL queries. I want to be able to do the following: For any given ItemId, loop through it's child Items until ...
2
votes
1answer
64 views

SQL to LINQ Query with date in where clause is not working

I try to query database item via LINQ but it is not working. The exception is just: Object reference not set to an instance of an object. The stacktrace is as unhelpful as the exception itself: ...
0
votes
1answer
26 views

How to search multi keywork in linq query

i have this code in homepage CheckBox[] ch= new CheckBox[12]; ch[0] = ChkContextA; ch[1]= ChkContextB; ch[2]= ChkContextC; ch[3]= ...
0
votes
0answers
11 views

How to get table contents data given table name from ITable

I am using datacontext to gettables get the list of tables. I am using table name to get the required table as shown below. public ITable GetTableByName(DataContext context, string tableName) ...
0
votes
1answer
29 views

Linq query to sum values from tables

I have a LINQ query, which takes an invoice, looks up the quantity and unit price of each item attached, and in another linked table, looks up any payments made against the invoice. Currently this ...
0
votes
0answers
32 views

SQL to Linq (order and group by hour interval)

I had a SQL needed to convert into Linq, looked everywhere still failed. please help me out SELECT hour(recordoriginaldata.StartRecordTime) as hour, sum(recordoriginaldata.RecordLength) as ...
0
votes
0answers
26 views

System.Web.UI.WebControls.Calendar Problems

Suppose you have two calendars: <asp:Calendar ID="Calendar1" runat="server" /> <asp:Calendar ID="Calendar2" runat="server" /> Suppose you click on May 16, 2013 in both and do the ...
-2
votes
1answer
37 views

LINQ combined columns contain

I have three fields; first name, middle initial, and last name. How would I do a LINQ query to check if: x = query // i.e. john y = first name + " " + middle initial + " " last name // i.e. john a ...
4
votes
1answer
68 views

Viewmodel and LINQ query to represent 4 linked tables in Asp.Net MVC

I'm using a typical invoice system as a test for developing MVC and ViewModel knowledge, before tackling migrating my employers inhouse systems from asp to asp.net MVC. I know ViewModels are the ...
0
votes
1answer
33 views

row number with help of linq

my table consists of 3 columns(sno,name,age) now i am retrieving this table from the database with extra column(row number) ,i used the following code select * from ( select ROW_NUMBER() over ...
0
votes
1answer
46 views

SQL Server triggers aren't working with Linq to SQL on ASP.NET

My work colleague is making the ASP.NET Web Forms application collecting data. I'm administrating SQL Server database of it. Based on databse he makes objects to Web Forms using Linq to SQL. He wanted ...
0
votes
0answers
36 views

Convert SQL query into LINQ query in VB

I would like to know how to convert the SQL query listed below into a LINQ query in VB: SELECT * FROM (SELECT SUM(t.Amt) Tax, g.GenQuoteDetails_Id, g.lastTkdt, g.QuoteDt, g.BaseFareCurrency, ...
0
votes
0answers
27 views

Asp.net LinqToSql with SqlCacheDependency - Cache is getting invalidated correctly, BUT fail to reinitialize cache after the invalidation

I am trying to use a SQL dependency to invalidate the Linq query cache upon changes to the database. I have configured the dependency correctly and it seems that the cache value is getting invalidated ...
0
votes
1answer
46 views

Performance in ENTITY FRAMEWORK

Sometimes when I'm writing queries using LINQ and if I use it inside of a loop. It turns so slow the performance. var query1 = from c in db.Classes where ...
0
votes
1answer
33 views

How to express “is null” sql syntax in linq to sql

How can I express "IS NULL" sql syntax in Linq to Sql? Where(r => (r.Level1.Equals(l[1] == "" ? null : l[1])) In the above code linq to sql converts the linq expression into the following sql ...
0
votes
2answers
48 views

LINQ Group By and aggregate fields

I've always struggled with grouping in LINQ, I'd like to group based on the date part of a datetime field and aggregate other fields. Example table layout myDateField myIntField1 myIntField2 ...
0
votes
1answer
25 views

Linq DataContext.CreateDatabase() force SQL Server 2005

I'm using Linq DataContext.CreateDatabase() to generate a database. Currently it's generating a SQL Server 2008 database. I would like to know if it's possible to make CreateDatabase() generate a SQL ...
0
votes
1answer
53 views

linq left outer join object reference not set to an instance of an object

i am using left outer join in this query below. the variable fgi is coming null so so the line after that in where it giving object reference error. how can solve it?. var a = (from e1 in ...
1
vote
0answers
53 views

Local database changes not saved after SubmitChanges()

I'm using local database to store my data. I have file *.sdf which I load from Isolated Storage, because I want my application to work also in offline mode, so if user doesn't want, he doesn't have to ...
0
votes
0answers
73 views

Linq to SQL Query Slow

I'm trying to do the following SQL query with linq to sql. select COURSE_SECTIONS.SEC_SUBJECT, COURSE_SECTIONS.SEC_COURSE_NO, COURSE_SECTIONS.SEC_NO, ...
0
votes
1answer
16 views

Frequent TransactionException for simple query

Using .NET 4, LINQtoSQL, in an MVC 4 app I have just started experiencing a problem where a large amount of requests are failing. The requests seem to be failing on a very simple select from the ...
3
votes
2answers
61 views

Linq complex search resulting in NullReferenceException

I have the following LINQ code used in a unified search function. var searchObjects = from objectA in this.context.DB.objectAs join objectB in this.context.DB.objectBs on objectA equals ...
4
votes
1answer
122 views

What's the better way to write this linq query?

SQL: SELECT node.CategoryId, node.CategoryName, node.Description, node.Lft, node.Rgt, node.ShowOnMenu, (COUNT(parent.CategoryName) - 1) AS Level, (CASE WHEN node.Lft = ...
0
votes
2answers
50 views

Cannot open user default database. Login failed.for user

I built a windows forms application project and connected a SQL Server database using Linq-to-SQL. Everything worked properly until this error appeared : Cannot open user default database. Login ...
0
votes
0answers
35 views

Linq To Sql Category Sub Category Count Performans

Product Table : ID Name ... Category Table : ID ParentCategoryID Name ProductCategories Table : ID CatID ProdID and.. ProductCategories in CatID foreign key and ProdID foreign key multiple SQL ...
0
votes
1answer
43 views

linq to SQL category sub category count Recursive

product ID CategoryID Name ... Category ID ParentCategoryID Name Product > CategoryID = foreign key public class NameIDCount { public int ID {get;set;} public string Name { get;set;} ...
2
votes
3answers
53 views

Linq more condition on the same row

Hi I have following query to get some rows Where(x => (x.Year >= 2012 && x.Month >= 12) && (x.Year <= 2013 && x.Month < 2)) and this should return me ...

1 2 3 4 5 214