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.
データベース データの行をオブジェクトに格納したいのですが、C# で同様に見られるvarのようなキーワードが存在するかどうかわかりません。特定の列だけではなく、行データ全体を取得したいからです。
C#:
var data=from t in TableX where t.id==100 select t;
C++ /CLI には、C#autoと同じ意味を持つキーワードがあります。var
auto
var
auto data=...
ここを参照してください。