SqlCommand or SqlDataAdapter?

后端 未结 6 1028
鱼传尺愫
鱼传尺愫 2020-12-10 05:21

I\'m creating something like a small cashier application that keeps record for the clients, employees, services, sales, and appointments. I\'m using windows forms, and withi

6条回答
  •  伪装坚强ぢ
    2020-12-10 05:53

    If you are aware of these components (Core ADO.NET) (Command,Connection, DataAdapter) then I'd suggest Entity Data Model or Linq-SQL.

    SqlDataAdapter is helper class which implicitly uses SqlCommand, SqlConnection and SqlDataReader.

提交回复
热议问题