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.
マイクロ ORMDapperは、他のエンティティやクラスの定義を必要とせずに、データベースからオブジェクトを非常に簡単に取り込むことができます。以下はDapperコードの例です。
Dapper
同じ機能を持つ同等の Microsoft パッケージはありますか?
に最も近い Microsoft のパッケージは何Dapperですか?
var stuff = db.Query<stuffclass>("select a,b,c from Foo where a = {0}", x)
Well, I think Dapper is closest to Simple.Data which will answer you question, but not sure if that will fit with what you're looking for.