Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQLite テーブルから Customers をクエリしようとしました
お客様番号が特定の数字で始まるものが欲しいです。
次のコードは、sqlite にメソッド ToString がないというエラーをスローします。
キャストで狙いを定められるかな?? どのように?
conn.Table().Where(v => v.kdnr.ToString().StartsWith(そのようなテキスト));
エンティティフレームワークを使用すると、おそらくうまくいくでしょう:
.Where(v=>SqlFunctions.StringConvert(v.kdnr).StartsWith(suchtext))
SQLite プロバイダーについてはわかりません