LINQ to SQL is a component of .NET Framework version 3.5 that provides a run-time infrastructure for managing relational data as objects.
2
votes
1answer
53 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
19 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
10 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
26 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
28 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
20 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
65 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
29 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
43 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
27 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
22 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
38 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
27 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
43 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
22 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
38 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
36 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
70 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
56 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
118 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
29 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
33 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
39 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 ...
-2
votes
1answer
43 views
How to add item in List? [closed]
How to add item in this list?
var cl = (from cls in obj.Classes
where cls.isDelete != true
select new
{
cls.ID,
...
0
votes
1answer
22 views
How can I get a nested IN clause with a linq2sql query?
I am trying to implement some search functionality within our app and have a situation where a User can select multiple Topics from a list and we want to return all activities that match at least one ...
0
votes
1answer
30 views
Linq2Sql IQueryable inside another IQueryable
I'm trying to structure my code and be able to better maintain some of my LINQ queries. Actually I created a new helper class with some functions but I'm having some problems executing some of my ...
0
votes
1answer
40 views
editing the same cell in the gridview
hello i am creating a shopping application , I have a shopping cart in that i have some columns which are add from the code behind and some columns are of template fields which are not present in the ...
1
vote
0answers
34 views
how to group by two left joins?
I'm needing to make two left joins and sum/count data from these two left joins.
First i tried with just one left join (ValorEfetuado). This table may have data and if it has data i need to sum it.
...
-4
votes
0answers
90 views
LINQ and CPU Usage [closed]
When I call some linq function e.g Count() or CopyToDataTable() over big data in a thread, cpu usage increases to 100%.
What is the reason?
Thanks.
0
votes
1answer
45 views
'Sequence contains more than one element' (InvalidOperationException) thrown by external System.Core call when using Linq2Sql
firstly let me explain that I fully understand why this InvalidOperationException has been thrown and that I am simply looking for a way to avoid it from being thrown. There is a call to ...
0
votes
1answer
27 views
Linq 2 Sql with Sproc, as queryable, are any query tweaks turned into SQL or are they C#?
So given some sproc on a datacontext say I do a..
from arr in someContext.MySproc() select arr.Hello, arr.Whoa where arr.Name = "grumbug"
If it was from arr in someContext.MyTable then the select ...
0
votes
2answers
36 views
Attaching vs selecting and modifying in L2S
I have a Data Access Layer which creates a context and retrieves data (with no object tracking) and passes the information back to UI layer:-
My unit of work is a method and I release appdatacontext ...
0
votes
0answers
22 views
has_many_and_belongs_to equivalent in LINQ to SQL Windows Phone
I learnt that Association attribute handles one to many inherently with ThisKey and OtherKey.
We generally map many-to-many relations using a JOIN table, creating manually.
But in Rails we can use ...
0
votes
1answer
38 views
linq to stored procedures multiple select
MSDN docs say that I can write a stored procedure like this
CREATE PROCEDURE MultipleResultTypesSequentially
AS
select * from products
select * from customers
then read it from LINQ like this
...
0
votes
1answer
61 views
Error in linq-to-sql: Unable to create a constant value of type
I don't know what's wrong with this query - it keeps giving me this error:
Unable to create a constant value of type 'OvertimeProject.DataCore.tbl_Promotion'. Only primitive types or enumeration ...
1
vote
1answer
48 views
Linq Query and Expected Results — Distinct Field
I have a nested linq to sql query that is used to populate a treeview. The first select (Title Field) when being bound to the treeview is showing all of the Titles correctly, but if there is multiple ...
0
votes
0answers
26 views
Add record to DB using LINQ to SQL? dont save record in DB
i am using using LINQ to SQL. when i adding new record to my DB it show that it was add where i taking record, but then i close app and go to my DB, no record i were, if i add manualy in DB and ...
1
vote
1answer
17 views
Linq to SQL search for wildcard in double
In a Linq to SQL I am trying to search for a value of the type double:
var q = from a in db.GetTable<HKKS_Medlemmer>()
from g in db.HKKS_Get_grader_Kun_Grad(Convert.ToInt32(a.Skif))
...
1
vote
1answer
22 views
Bind a view to wpf datagrid
When know that a view represent a select command, if we use a view to bind it to a data grid using linqtosql,i want to know when the command sql will be executed is it when the window wpf is ...
1
vote
1answer
15 views
retrieve 10 records in linq with join
i have a function in my webservice to retrive All posted from the database , and my code work fine :
[WebMethod]
public XmlDataDocument return_FanWall_Posts()
{
var reportXmlItems = ...
1
vote
1answer
87 views
LINQ Select Statement making many SQL Calls
I am trying to run a Select on an IQUeryable linked to a database query. Its working correctly, but for all the properties being selecte-d, its running a seperate query.
My code looks something like ...
1
vote
1answer
38 views
Cant see the data that inserted into table
I connected my SQL database whith linq to sql, then I created an insert query and called InsertOnSubmit() and SubmitChanges(), it seems to be fine but that I can't see the inserted data, the table is ...
1
vote
1answer
42 views
Linq Query — Perform expected results with one query in WPF C#
I am working with a treeview in WPF
I have two classes that I am using to populate two levels of a treeview.
The first question is can I do this with one query or any better than I have achieved ...
0
votes
0answers
25 views
LINQ2SQL query to match multiple keywords
I have a situation where I need to break user's input string by commas and query a local database to find records where at least one substring is matched.
So far I had no success with that, the ...
0
votes
2answers
43 views
linq to sql submitchanges rollback
is there a way to roll back after a db.submitchanges without de need of transactions?
It would be a shame having to run a service special for loggings. Is there an alternative to roll back and not to ...
2
votes
1answer
57 views
Cannot insert the value NULL into column error
I am attempting to save user preferences into a table but am getting a null exception and I do not understand why. This is an MVC 4 application and this is my action result where I am getting the ...
0
votes
2answers
56 views
moving columns in gridview between template fields and bound fields
I have a gridview (GridviewProduct) in that i Have a Template field column Link button as Remove From Cart and and another Template Field column next to it as Quantity and other three Fields are ...




