LINQ asp.net page against MS Access .

后端 未结 2 1118
悲哀的现实
悲哀的现实 2020-12-11 03:16

I have a ASP.Net page using ADO to query MS access database and as a learning exercise i would like to incorporate LINQ. I have one simple table called Quotes.

The

2条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-11 03:41

    I don't think LINQ to SQL supports Access. However, if your table is sufficiently small to fit into memory, LINQ to DataSet will let you query datatables etc pretty easily - especially strongly typed datasets.

提交回复
热议问题