を作成するとき、私は、データベースを照会するLinq2SQLを使用して、簡単なWP7データベースアプリを開発しようとしているが、今日、私は内部コンパイラエラーを受信するために管理:(陵ツーSQLコンパイラエラー辞書
簡略化インテリセンスがないにもかかわらず、これはコンパイルエラーのいかだにつながるような新しいDictionary
を作成しようとしている、しかし
var query =
(
from x in MyTable
join y in MyOtherTable on x.Key equals y.Key
where SqlMethods.Like(x.Field, "%" + searchTerm + "%")
select new Results
{
MyResultField = new Dictionary<MyEnum,string>()
{
{ MyEnum.Value, x.Field },
{ MyEnum.OtherValue, y.Field }
},
...
}
);
:私のクエリのバージョンは以下の通りです(Results
は私の検索結果データを保持するクラスです)オブジェクトを検索しましたが、私は検索しましたが、01を作成せずに同様の結果を得る方法がわかりませんこの時点で。
絶望的な初心者のためのアイデアは何ですか?事前に多くの感謝!
更新
申し訳ありませんが、私は、コンパイラエラーを含めるのを忘れていました。別に#6から、彼らは私にはちんぷんかんぷんだが、それは...
# Error 1 Internal Compiler Error: stage 'BEGIN' MyProject
# Error 2 Internal Compiler Error: stage 'EMIT' MyProject
# Error 3 Internal Compiler Error: stage 'COMPILE' MyProject
# Error 4 Internal Compiler Error: stage 'COMPILE' C:\...\ViewModel.cs MyProject
# Error 5 Internal Compiler Error: stage 'COMPILE' symbol '<global namespace>' C:\...\ViewModel.cs MyProject
# Error 6 Internal Compiler Error (0xc0000005 at address 681AB648): likely culprit is 'BIND'.
# An internal error has occurred in the compiler. To work around this problem, try simplifying or changing the program near the locations listed below. Locations at the top of the list are closer to the point at which the internal error occurred. Errors such as this can be reported to Microsoft by using the /errorreport option.
# MyProject
# Error 7 Internal Compiler Error: stage 'COMPILE' symbol 'ChineseClassmate' C:\...\ViewModel.cs 12 11 MyProject
# Error 8 Internal Compiler Error: stage 'COMPILE' symbol 'ChineseClassmate.MyProject' C:\...\ViewModel.cs 12 11 MyProject
# Error 9 Internal Compiler Error: stage 'COMPILE' symbol 'ChineseClassmate.MyProject.ViewModel' C:\...\ViewModel.cs 12 11 MyProject
# Error 10 Internal Compiler Error: stage 'COMPILE' symbol 'MyProject.ViewModel.MyProjectViewModel' C:\...\ViewModel.cs 17 15 MyProject
# Error 11 Internal Compiler Error: stage 'COMPILE' symbol 'MyProject.ViewModel.MyProjectViewModel.SearchDatabase(string)' C:\...\ViewModel.cs 57 15 MyProject
# Error 12 Internal Compiler Error: stage 'COMPILE' symbol 'MyProject.ViewModel.MyProjectViewModel.SearchDatabase(string)' C:\...\ViewModel.cs 57 15 MyProject
# Error 13 Internal Compiler Error: stage 'COMPILE' symbol 'MyProject.ViewModel.MyProjectViewModel.SearchDatabase(string)' C:\...\ViewModel.cs 57 15 MyProject
# Error 14 Internal Compiler Error: stage 'BIND' symbol 'MyProject.ViewModel.MyProjectViewModel.SearchDatabase(string)' C:\...\ViewModel.cs 57 15 MyProject
"内部コンパイラエラー"。 "コンパイラエラーの筏"。コンパイルエラーが何であるかを正確に伝えない限り、誰かがあなたの問題を診断するのは本当に面倒です。 – LukeH
申し訳ありませんルーク、あなたは正しいです!私は上記のエラーを追加しました。 – Superangel