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.
soql クエリからセットを設定できますか? 構文を機能させることができませんでした
c = [select id From Contact limit 1000]; を設定します。
ありがとう!
セットのタイプを宣言し、次のようなパラメーターとしてリストを受け取るセット コンストラクターを使用する必要があります。
Set<Contact> c = new Set<Contact>( [SELECT Id, Name FROM Contact LIMIT 1000] );