Tagged Questions
0
votes
3answers
68 views
Selecting distinct with certain condition
I have values in a list:
List1
ID groupID testNo
1 123 0
2 653 1
3 776 6
4 653 0
I want to write a T-Sql or linq or lambda expression, so that whenever ...
0
votes
1answer
40 views
LINQ to SQL - Replicate this query [closed]
How would I replicate this query in Linq to SQL?
SELECT
*
FROM
JobResults
WHERE
JobID IN
(SELECT JobID FROM JobResults WHERE FieldID = 30 AND LookupEntryID = 293)
AND JobID IN
...
1
vote
0answers
36 views
linq and parallelism - SQL Server
I'm encountering an issue with LINQ To Entities.
If I run my LINQ query then it use Parallelism (Gather Streams and Reparation Stream) in the execution plan which causes lots of CXPACKET waits.
But ...
0
votes
1answer
32 views
How to Convert sql server query to linq in entity framework
I am converting the sql server query to linq
SELECT * FROM DataFlow where FlowDeleted = 0 and
DataFlow.FlowVersionNumber =
(
SELECT MAX(FlowVersionNumber) from DataFlow i
where ...
1
vote
3answers
35 views
unable to access the linq to sql result in mvc4
I am getting result from theee tables usign linq to sql but i am unable to use the values in the view, how i can do that as i am new to mvc
here is my controller code:
public ActionResult Grid()
{
...
0
votes
3answers
19 views
Selecting values through mapping table.
I have three tables senderTable, recieverTable and a mapTable. I am trying to write a query to get output of senderName and recieverName
senderTable
senderID
senderName
recieverTable
recieverID
...
2
votes
3answers
57 views
ASP.NET MVC 4 - Using Linq to read databse once & use multiple times
I am using Linq to create 4 object collections:
var Restaurants = db.Places.Where(p => p.Tags.Any(t => t.Name == "Restaurant")).ToList();
var Bars = db.Places.Where(p => p.Tags.Any(t => ...
0
votes
0answers
56 views
Avoiding Deadlocks in SQL with concurrent inserts
I have a process (Process A) which keeps adding records to a SQL table (Table A) (Direct inserts using stored procedure). It is a continuous process which reads the requests and writes to a table. ...
3
votes
2answers
100 views
How to put string in array, split by new line in C#?
I have a following string, with line breaks in a textfile:
0100000184998 1 2500855884500 /RAM PRADHAN 1302 Cold
0100000186936 1 2515407774500 /HARI SHRESTHA 1302 Cold
0100000238562 1 2500211214500 ...
-1
votes
1answer
43 views
How do I get the below T-SQL to work in LINQ
I'm trying to convert the below query to LINQ statement:
SELECT
TOP 10
S.Id
, S.Url
, S.Score
, MAX(LastUpdated) AS LastUpdated
FROM
Sites S
LEFT JOIN History H ON S.ID ...
2
votes
1answer
51 views
LINQPad - can't understand the query generated
I typed the following LINQ in LINQPad and using the connection to my database (SQL Server 2005) using dbcontext.
from j in Jobs
where j.dValuationDate.HasValue && j.dValuationDate.Value > ...
-2
votes
0answers
66 views
Dynamic Data,Pivot Records, with running totals Using Linq C# [closed]
i have a requirement to show report of target achieved by members for a campaign.
campaign has a set duration and i have to show data in report by month
This isn't the actual example, but it's ...
1
vote
3answers
42 views
How to split a row into many equals rows by a value in a column?
There is any way to dismember a row into many rows by a value into row column?
Doing my query, i got the result:
ID TmpShoppingCart_ID StoreSKU_ID QuantityΞΞ Enabled
26 34 448 ...
0
votes
0answers
118 views
Entity Framework LINQ joining 5 tables on multiple columns (impossible?!)
Please see image:
I am trying to create a LINQ query that combines 5 different tables on 1 to 3 different columns. I am basically taking the examples of 2 tables and repeating the join sections for ...
0
votes
1answer
67 views
Reuse the linq table class when selecting from view
I have an sql server table linked to class via the linq attribute:
[Table(Name = "MyItems")]
public class MyItems
{
...
}
Table<MyItems> linqMyItems = db.GetTable<MyItems>();
...
0
votes
1answer
37 views
Selecting linq class from a sql object query
Learning the LINQ, trying to grasp the paradigm...
I have set up a LINQ table class for one of the core business objects. I'd like to retrieve a list of these objects from the database, using MS SQL ...
0
votes
1answer
46 views
SQL Query much slower from Linq than directly from management Studio
I'm experiencing a very strange performance issue when executing a query through C# Linq to SQL. Usually the query takes a second or two to execute, but for some very specific search criteria the ...
0
votes
1answer
90 views
Get data from a dynamic query using a DataSet in c#
I'm having a couple of days with a dynamic query that doesn't bring me data to show in a report. What I have done is to make a code that helps me build a dynamic query using the parameters that I get ...
1
vote
1answer
51 views
How to save Video in SQL Server and display in listview and play it in video player on asp.net C#
I am developing a asp.net project and want to do do task done asps here is a problem
i want to save a video in SQL Server table and also play that video in web player
how can i save a video in MS ...
0
votes
1answer
120 views
Saving Items from Listbox to SQL Server table using LINQ
I have the following Item(s) A (string) and Item(s) B (decimal) In my WPF ListBox. I intend to
to save them to a table in MS SQL database with the respective data type.
...
0
votes
4answers
92 views
SQL search between commas
I am working on a requirement to search for words that appear only between two commas within a string.
So for example, in my database, I have the following data:
...
2
votes
2answers
72 views
Selecting Usernames Uniquely
Suppose that I have a table with a column labeled Name, which contains (possibly) repeating entries of unique usernames. What LINQ-to-SQL statement can I write to uniquely traverse the usernames? In ...
0
votes
2answers
45 views
Convert SQL to LINQ to Entities WHERE IN clause
How can I convert this sql statetment to LINQ to Entities?
SQL Statement:
Select * from Departments where DepartmentID in (Select DepartmentID from Employees where FirstName like '%FirstName%' or ...
1
vote
1answer
56 views
Linq Data Source WhereParameters with “\” in value
ASP.NET/C# project utilizing LinQ to SQL
I have listbox, with values from database, which is used to filter Linq Data Source.
Everything works fine until I have value in the listbox that contain "\". ...
0
votes
2answers
64 views
linq check if matches null or selected item
I am checking to see if items already match whats in my MSSQL DB. I am using LINQ to update records. I would like to know how i can check if an item is equal to d_0_2 or if its equal to null/empty. ...
0
votes
0answers
31 views
Calling SQL Server Sproc from LINQ does not execute whole query
This seems related to this issue, which does not have an answer:
LINQ: executing stored procedure, but skipping cursor within
I have a stored procedure in SQL Server that runs correctly every time ...
0
votes
1answer
48 views
Why is Linq query setting my Arithabort options to false?
I have code like this:
using (var db = new MyDataContext()) {
db.ExecuteStoreCommand("Set Arithabort on");
var q = AFairlyComplexQuery(db); // returns an IQueryable<>
var result = ...
0
votes
0answers
62 views
Updating Join table in Entity Framework
I need to design a database using entity framework as follows:
The table setup is much the same as in the following question
Entity Framework: Updating join tables except with a counter(int) field.
...
0
votes
1answer
37 views
Tinyint as byte nhibernate
I have a table with a tinyint column in a SQL Server 2008 R2 database, which maps to a byte property in my POCO.
The problem is whenever I run a query with a where clause on the tinyint column using ...
0
votes
2answers
52 views
How to properly set up a Database to take advantage of LINQ/MVC
I have been given a task to set up a large database with lookup tables, one to ones, many to manys, one to manys. and I'm looking for resources on where to begin, as I have never set up a database ...
2
votes
2answers
50 views
LINQ to SQL and configuring it not to use TOP
We are using SQL Server 2005 with linq to sql in the code.
We noticed a slowdown (3 minutes versus a 4 second return for 100 records) when a TOP 300 is used in the following scenario.
SELECT TOP ...
5
votes
3answers
140 views
Count or Skip(1).Any() where I want to find out if there is more than 1 record - Entity Framework
I'm not sure when but I read an article on this which indicates that the usage of Skip(1).Any() is better than Count() compassion when using Entity Framework (I may remember wrong). I'm not sure about ...
0
votes
1answer
75 views
Find duplicate parent rows by evaluating child record set
I am trying to find rows in table parent who's child records make it a duplicate of another record in the parent table. So it's similar to a group by with count > 1, except the criteria is based on ...
0
votes
1answer
20 views
Transform server status data to running 24 hour tabular format
I need to display running server status, in an asp.net grid view using c#, for the last 24 hours in 5 minute increments. The data is in SQL Server records of the form: HostName, RecordDate, ...
0
votes
2answers
52 views
Which approach should i opt for?
in my scenario I have to extract data from sql server and migrate it into sharepoint , as soon as a record is entered into the database I have to run my console application that executes the ...
10
votes
5answers
493 views
Stored Procedure return values with linq data context
I am trying to access the return value of a stored procedure with Linq
DECLARE @ValidToken int = 0 //I have also tried using a bit instead of an int here.
IF EXISTS(SELECT 1 FROM Tests WHERE ...
0
votes
1answer
66 views
Rewrite “group by” LINQ without grouping
I'm developing a Lightswitch app and need to do view some aggregated data in a screen. However LightSwitch doesn't support "group by" and "sum", so my question is if this could be rewritten without ...
0
votes
0answers
89 views
Member access not legal on system.decimal - LINQ
I am having a problem with my LINQ Query here. Every time it runs I get this error:
Member access 'System.Decimal UnitPrice' of
'S00117372_FOOP202_CA2.Order_Detail' not legal on type
...
2
votes
2answers
47 views
What kind of query in LINQ do I have to make to get a custom List that contains Lists of objects?
What I'm trying to do is to find the best and fastest way to obtain a collection of objects from a query so I can parse them into JSON and send them through a WCF webservice. I have an entity that is ...
2
votes
1answer
47 views
Querying SQL Server for percentages
I've got three tables: Customers, Origins and (the mapping table) CustomerOrigins. Please note that a customer can originate from more than one Origin (for example Internet, Advertisement, Newsletter)
...
0
votes
0answers
72 views
This method is not supported against a materialized query result
I am trying to link many tables using LINQ Lamda but i am getting problem when dealing with subquery to get a value for ProducedBy property. I am getting a message : This method is not supported ...
1
vote
2answers
83 views
How can I SELECT record from database WHERE a number is CLOSEST to one I supply?
I am no database expert and really have no idea even how to approach this. I'm sure it is simple for someone who knows TSQL and would welcome some insights please.
I have a database with postcodes ...
0
votes
1answer
68 views
How to convert T-SQL into LINQ
I have following code in a T-SQL query and I need to convert (rewrite) it into LINQ. Can somebody help me? Thanks
SELECT (select max(X.PocetDniPoPlatnosti)
from
(
select
(select top 1 ...
0
votes
3answers
61 views
WITH statement in LINQ Entity Framework
I got a SQL code like this which I'm going to use in a .NET application, I'm familiar with LINQ but I don't know what to do with the WITH statement.
WITH records
AS
(
SELECT [key], [rev], ...
0
votes
0answers
111 views
Querying DataSet in memory using LINQ vs querying SQL Table directly (dictionary table) - performance
I found no exact answer yet, so:
Imagine 3 columns dictionary table structured following way:
int | string1 | string2 (where int+string1 is pk)
Table has ie. more than 20k rows and it's queried ...
0
votes
1answer
73 views
Performance issue with SQL server due to sql query
Need some help to solve this error:
The query processor ran out of internal resources and could not produce a query plan. This is a rare event and only expected for extremely complex queries or ...
-6
votes
1answer
70 views
Connection to a distant database [closed]
I have a WPF application that contains two databases(local and distant).I'd connect to the distant database and execute some queries of selection (no modification) , for the local one I need to ...
0
votes
0answers
63 views
Update query on Temporary table in LINQ with concatenation operation
I am trying to convert stored procs into LINQ using linqpad. I have folllowing sql query which i want to convert to LINQ
UPDATE @tempTable
SET fullname = (p.LastName + ', ' + ISNULL(p.FirstName, ...
1
vote
2answers
212 views
Search multiple column using multiple control in asp.net using linq
Project_Detail pro = new Project_Detail();
string title=Ttitle.Text;
string year1=Tyear.Text;
string key = Tkeywrds.Text;
string area = Ddl_area.Text;
string categ = Ddl_catgry.Text;
string tech = ...
0
votes
0answers
103 views
LINQ to Entities returning incorrect results for tables without primary key
I have found that LINQ to Entities needs a primary key on the table in order to return correct results. Without it, I get the expected number of rows but including duplicates (and accordingly, missed ...


