I m developing a WPF application, which connects MS SQL2008 database remotely. The app communicates with the database by Linq-to-SQL. pretty handy.
However, because of the slow database server, I m trying to use local database caching.
"VS2010 > Add Item > Local database cache" wizard could be a solution, but it uses DataSet and SQL Compact(*.sdf).
I found Linq-To-SQL cannot generate classes from the SQL COMPACT edition! (when I drag tables, error pops up and says unsupported data provider )
因此, 是用当地数据库Cache使用Linq-to-SQL的任何解决办法?。
或者是否使用过与Linq-to-SQL有关的任何数据库综合方法?