How to move from LINQ to SQL to “LINQ to WCF”?

后端 未结 4 1182
自闭症患者
自闭症患者 2021-02-09 04:25

I\'m putting together a WPF application which will eventually use WCF web services as its data source.

During the prototyping phase, I\'m using LINQ to SQL on an SQL 200

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-09 05:00

    You'll probably want ADO.NET Data Services. You'll have to add an IUpdatable interface implementation to your entities, and you can use LINQ to SQL, Entity Framework, SubSonic, or a number of others. We're using the CodeSmith PLINQO templates, which allow you to add this functionality to LINQ to SQL.

提交回复
热议问题