Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesHelp with DAL2, linq, and "like"Help with DAL2, linq, and "like"
Previous
 
Next
New Post
7/11/2014 8:56 AM
 
Hi all,

I'm trying to tweak some code in the DAL2 to use "like" in the where clause, like this:

select * from table where LastName like '%mark%'

Here's some code I copied and tweaked using a where clause to get some records but I can't figure out how to use "like" using a parameter passed in to a method:

IEnumerable t;
using (IDataContext ctx = DataContext.Instance())
{
var rep = ctx.GetRepository();
t = rep.Find("WHERE FirstName=@0", strLastName);
}

It works fine if the variable strLastName matches exactly but I'd like to find similiar matches too.

Thanks,
Mark
 
New Post
7/11/2014 9:45 AM
 
did you try to put ' around the text to compare with?

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
7/11/2014 10:12 AM
 
Instead of hoping we can guess why not tell us what you DID do and how it failed?

Best wishes,
- Richard
Agile Development Consultant, Practitioner, and Trainer
www.dynamisys.co.uk
 
New Post
7/11/2014 12:30 PM
 
I tried no quotes, single quotes, and the % symbol did it complained about a foreign character but I just got it to work by builing the where clause dynamically like this:

string strWhere = "WHERE FirstName like '%" + strPhrase + "%'";

And using it like this:

t = rep.Find(strWhere, strPhrase);

Mark

 
New Post
7/11/2014 2:27 PM
 
Mark, that's exactly, how It should look like for the sql server;
rep.Find("WHERE FirstName Like '%@0%'", strLastName)

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesHelp with DAL2, linq, and "like"Help with DAL2, linq, and "like"


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out