0
votes
2answers
51 views
What happened to the jQuery “contains” traversal method?
A follow-up to the comment I just posted here... I ran this in Firebug:
var l = []; for(f in $('div')){l.push(f);}; l.sort(); alert(l.join("\n"));
just to make sure I wasn't goi …
2
votes
2answers
46 views
Oracle select all rows using the contains keyword
Hi, I'm looking for a character which I can use in an oracle conatins to get ALL results.
If I search for the string "test" in a title-column I use this statement:
select *
from …
0
votes
3answers
41 views
LINQ: Entity string field contains any of an array of strings
I want to get a collection of Product entities where the product.Description property contains any of the words in a string array.
It would look something like this (result would …
2
votes
2answers
76 views
NHibernate: HasMany components and Where/Contains clause
Hi, I'm trying to work out how to create a query using Linq to NHibernate.
I have two classes like this:
public class Foo
{
private ISet<Bar> _bars = new HashedSet<B …
1
vote
1answer
57 views
PHP SimpleXML XPath contains() to find other elements referenced by this element
Hi Guys ang Gals,
I'm being given XML in the following format, and am parsing it with PHP's SimpleXML.
<?xml version="1.0" encoding="UTF-8"?>
<ManageMyBooking>
&l …
2
votes
4answers
164 views
How do I check if a file is under a given directory, in PowerShell?
I want to check if a file path is in a given directory (or one of its subdirectories), from PowerShell.
Right now I'm doing:
$file.StartsWith( $directory, [StringComparison]::In …
1
vote
3answers
44 views
linq not in query
I'm lost in linq-land, trying to turn this SQL (which give the results I need) into something that works in linq / C#. The result will end up in a SelectList.
select Agencies.Agen …
3
votes
5answers
272 views
STL: How to check that an element is in a std::set ?
How do you check that an element is in a set?
Is there a simpler equivalent of the following code:
myset.find(x) != myset.end()
0
votes
2answers
57 views
Entity Framework - Contains Method
Someone has an answer to this missing feature in Entity Framework. Does anyone have a solution to the missing Contains method in Entity Framework that works? I've tried a number …
0
votes
1answer
53 views
string.Contains with Linq To Sql return an Null exception
My Linq To Sql query
PROJETS = PROJETS.Where(p => (p.VilleArrive != "" && p.VilleArrive != null) && p.VilleArrive.Contains(alerte.VilleArrive));
is translat …
0
votes
1answer
37 views
Linq Correlated query // Contains
Edited
Solution using or rather than union !
It seems there is a problem with linq2sql w.r.t selecting a relation post a UNION
msdn's social forums also indicate it as so
Inten …
1
vote
2answers
95 views
JQuery Contains Selector - Multiple Text Items
Hi,
I am new to JQuery and maybe am missing the obvious, but how can I filter a table using the contains selector but have it look for multiple strings using an OR operator. In ot …
1
vote
3answers
134 views
Contains() method of List<T>
Precisely which methods in a Class are responsible for the List<T>'s Contains() to operate?
I have overloaded == in my class. But it seems to have no effect.
0
votes
2answers
54 views
Is jquery “:contains” selector accepts this kind of value “Banking and Finance”?
Hello guys,
I'm having problem with the "contains" in jquery. It seems that it only accepts one word. Not a phrase or two words.
Example:
$('#div:contains('Word')'); --> This is …
1
vote
4answers
68 views
How to find out if an element contains only a £ sign with JQuery?
Hi Guys,
Say I have 2 divs:
<div>£ 21.99</div>
<div>£</div>
If I only want to select the div that contains the £ symbol only, …
