1
vote
1answer
34 views
Linq To Sql ‘Where Or’ operator
I need to create a query which checks if a field (string) contains one or more words supplied at run time.
Basically I need to be able to ask a WhereOr question. This seems like …
3
votes
3answers
77 views
C# Beginner: Where has my IList.Where() method gone?
Hi guys
I've got another simple one (I think) that's stumping me. I have written a method in one of my controls that gets the latest version of a file in a CMS given it's filename …
0
votes
3answers
28 views
Select from table1 WHERE table2 contains ALL search parameters
I have two tables (notes and tags). Tags has a foreign key to notes. There may be several tag records to a single note record.
I'm trying to select only the notes that contain all …
0
votes
4answers
84 views
SEARCH several Tables IN SQL
I'm trying to search several tables at once for a search term. My query is:
SELECT item.ItemID
FROM Inventory.Item item
JOIN Inventory.Category catR // each item can …
0
votes
1answer
22 views
Codeigniter WHERE on “AS” field
I have a query where I need to modify the selected data and I want to limit my results of that data. For instance:
SELECT table_id, radians( 25 ) AS rad FROM test_table WHERE rad …
0
votes
2answers
55 views
LINQ Where with AND OR condition
Hi,
So I have managed to get this query working
List<string> listStatus = new List<string>() ;
listStatus.add("Text1");
List<string> listMerchants = new List& …
1
vote
3answers
65 views
Query running longer by adding unused WHERE conditions
I've hit an interesting snag (interesting to me at least). Below is a general idea of what my query looks like. Assume @AuthorType is an input to the stored procedure and that th …
2
votes
5answers
95 views
How do I force SQL Server 2005 to run a join before the where?
I've got a SQL query that joins a pricing table to a table containing user-provided answers. My query is used to get the price based on the entered quantity. Below is my SQL stat …
0
votes
2answers
53 views
Linq include with where clause
Hey so I've got the situation where I'm pulling a client back from the database and including all the case studies with it by way of an include
return (from c in db.Clients.Includ …
0
votes
3answers
56 views
AsQueriable() or Expression<T>.Compile()?
I have implemented a cache of some database tables (as List<T>) that I need to query with the same Expression<Func<T, bool>> as I would use when querying against …
2
votes
5answers
566 views
T-SQL Where Clause Case Statement Optimization (optional parameters to StoredProc)
I've been battling this one for a while now. I have a stored proc that takes in 3 parameters that are used to filter. If a specific value is passed in, I want to filter on that. If …
0
votes
1answer
67 views
Zend DB Table Where Clause
I'm trying to use an array to set the where parameters for a Zend DB Table. I am trying to follow an example in the documentation:
$select = $table->select()->where(array(' …
0
votes
1answer
49 views
How to create a dynamic query using EOD SQL?
Hello guys.
This should be fairly simple, though I can't seem to find a single example.
I want to create a query looking like this:
SELECT column_name FROM table_name WHERE colum …
2
votes
3answers
93 views
LINQ results when there are no matches?
What exactly does a LINQ function return when there are no matches? Take the Where method, for example:
var numbers = Enumerable.Range(1, 10);
var results = numbers.Where(n => …
1
vote
2answers
22 views
MYSQL IN or multiple conditionals
I have a simple query which is returning records based on the field status not having certain values.
Lets say for arguments sake that the field can have values 1,2,3...10 and I wa …
