SQLでは、次の構文を使用できます。
SELECT *
FROM MY_TABLE
WHERE VALUE_1 IN (1, 2, 3)
C#に同等のものはありますか? IDEは "in"をキーワードとして認識しているようですが、それに関する情報を見つけることができないようです。
だから、次のようなことをすることは可能ですか?
int myValue = 1;
if (myValue in (1, 2, 3))
// Do something
の代わりに
int myValue = 1;
if (myValue == 1 || myValue == 2 || myValue == 3)
// Do something
.Inを書きたい場合は、それを可能にする拡張機能を作成できます。
static class Extensions
{
public static bool In<T>(this T item, params T[] items)
{
if (items == null)
throw new ArgumentNullException("items");
return items.Contains(item);
}
}
class Program
{
static void Main()
{
int myValue = 1;
if (myValue.In(1, 2, 3))
// Do Somthing...
string ds = "Bob";
if (ds.In("andy", "joel", "matt"))
// Do Someting...
}
}
List.Contains()
はあなたが探しているものだと思います。 C#にはin
keyword
があり、SQLで参照しているものとはまったく異なる目的を果たすoperator
はありません。
C#でin
キーワードを使用するには2つの方法があります。 C#にstring []またはListがあると仮定します。
string[] names; //assume there are some names;
//find all names that start with "a"
var results = from str in names
where str.StartsWith("a")
select str;
//iterate through all names in results and print
foreach (string name in results)
{
Console.WriteLine(name);
}
あなたの編集を参照して、私はあなたのコードをこのようにしてあなたが必要なことをするでしょう。
int myValue = 1;
List<int> checkValues = new List<int> { 1, 2, 3 };
if (checkValues.Contains(myValue))
// Do something
あなたはこれを行うことができます:
var x = 99; // searched value
if (new[] {1,2,3,99}.Contains(x))
{
// do something
}
通常、コレクションのContains
メソッドを使用します。
myCollection.Where(p => Enumerable.Range(1,3).Contains(p));
役に立てば幸いです。
C#には「in」演算子はありません。「in」キーワードは「foreach(... in ...)」または「from ... in ...」でのみ使用されます。
SQLクエリに相当するLINQは次のようになります。
List<int> list = new List<int> { 1, 2, 3 };
var query = from row in my_table
where list.Contains(row.value1)
select row;
In演算子を実装する最良の方法は、拡張メソッドを使用することです。私は少し違ったやり方をしました:
public static bool In(this string str, string CommaDelimintedStringSet)
{
string[] Values = CommaDelimintedStringSet.Split(new char[] { ',' });
foreach (string V in Values)
{
if (str == V)
return true;
}
return false;
}
違いは、各値を引用符で囲む必要はなく、コンマ区切り値のセット全体のみであるため、入力しやすいことです。
bool result = MyString.In("Val1,Val2,Val3");
select * from table where fieldname in ('val1', 'val2')
または
select * from table where fieldname not in (1, 2)
LINQ to SQLのINおよびNOT INクエリに相当するものは次のようになります。
List<string> validValues = new List<string>() { "val1", "val2"};
var qry = from item in dataContext.TableName
where validValues.Contains(item.FieldName)
select item;
この:
List<int> validValues = new List<int>() { 1, 2};
var qry = from item in dataContext.TableName
where !validValues.Contains(item.FieldName)
select item;
更新された質問には、switchステートメントを使用することもできます。
switch (myvalue)
{
case 1:
case 2:
case 3:
// your code goes here
break;
}
拡張機能を作成できます。次のようなコードを作成するために、私は一度書いた
if(someObject.stringPropertyX.Equals("abc") || someObject.stringPropertyX.Equals("def") || ....){
//do something
...
}else{
//do something other...
....
}
拡張s.tでより読みやすくなります。書くことができた
if(someObject.stringPropertyX.In("abc", "def",...,"xyz"){
//do something
...
}else{
//do something other...
....
}
コード は次のとおりです。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Some.Namespace.Extenders
{
public static class StringExtender
{
/// <summary>
/// Evaluates whether the String is contained in AT LEAST one of the passed values (i.e. similar to the "in" SQL clause)
/// </summary>
/// <param name="thisString"></param>
/// <param name="values">list of strings used for comparison</param>
/// <returns><c>true</c> if the string is contained in AT LEAST one of the passed values</returns>
public static bool In(this String thisString, params string[] values)
{
foreach (string val in values)
{
if (thisString.Equals(val, StringComparison.InvariantCultureIgnoreCase))
return true;
}
return false; //no occurence found
}
}
}
これは、当時の私のニーズに固有のものでしたが、より多くの異なるタイプに合わせて変更することができます。
共通の、より強力なLINQの方法:
var list = new List<string> { "Tomato", "Orange", "Mango"};
var query = from i in my_table
from v in list
where i.Name.StartsWith(v)
select i;
0〜9の数字の場合:
"123".Contains(myValue)
その他のものについて:
"|1|2|3|".Contains("|" + myValue + "|")
C#のin
キーワードは、foreach
ステートメントおよびLINQクエリ式用です。 C#自体にはSQLのin
演算子に相当する機能はありませんが、LINQはContains()
で同様の機能を提供します。
var list = {1, 2, 3}
var filtered = (
from item in items
where list.Contains(item)
select item).ToArray().