Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8814791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:13:03+00:00 2026-06-14T04:13:03+00:00

Please tell me if i can use Not Like Operator in Select method of

  • 0

Please tell me if i can use “Not Like” Operator in Select method of DataTable as filter expression?
I mean something like this:

MyDataTable.Select("MyField Not Like '" + MyValue + "%'");
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T04:13:04+00:00Added an answer on June 14, 2026 at 4:13 am

    Yes, this works. For a list of all possible expressions see http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx

    Here also is a sample program demonstrating this works.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data;
    
    namespace ConsoleApplication2
    {
        class Program
        {
            static void Main(string[] args)
            {
                DataTable table = new DataTable();
    
                // Create the first column.
                DataColumn textColumn = new DataColumn();
                textColumn.DataType = System.Type.GetType("System.String");
                textColumn.ColumnName = "text";
    
                // Create the second column.
                DataColumn priceColumn = new DataColumn();
                priceColumn.DataType = System.Type.GetType("System.Decimal");
                priceColumn.ColumnName = "price";
                priceColumn.DefaultValue = 50;
    
                // Add columns to DataTable.
                table.Columns.Add(textColumn);
                table.Columns.Add(priceColumn);
    
                DataRow row = table.NewRow();
                row["text"] = "bc";
                table.Rows.Add(row);
    
                DataRow[] rows = table.Select("text not like 'a%'");
                Console.WriteLine(rows.Count());
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody please tell me what is the use of %NOTFOUND operator? We can
Can you please tell me how can I use valgrind for memory profile? The
Please any on tell me can i use Sqlite database in my Windows Phone
Can anyone please tell me when should I use MessageContracts and when should I
Can anyone please tell me is there any special requirement to use either EXTERN
Please tell me what regular expression should i use to validate cricket overs in
Please tell me how can I get array of all Those DIV of specific
Please tell me how can i activate the Sun JavaME memory monitor within eclipse
can anyone please tell me how can i retrieve data in jquery when i
Can you please tell me how can I set a global #define in my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.