Problem refreshing tables in the LINQ to SQL designer

后端 未结 9 1395
野趣味
野趣味 2021-02-08 12:54

I have been using LINQ to SQL for a while, and there is one thing that has always bothered me. Whenever I modify the schema of a table, in order to refresh it in the designer, I

9条回答
  •  失恋的感觉
    2021-02-08 13:13

    Some people use SqlMetal to 'refresh/update' their Linq2Sql designer. The designer does not have support for refreshing the schema, when the DB changes. You have to manually drop the table and re-add it back in.

    ADO Entity Framework i believe can refresh. I've not used it, but I think I saw this at a TechEd demo this year.

    Helpful Info: Google's results for SqlMetal.

提交回复
热议问题