Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要编写一个 WPF(4.0) 应用程序,它有一个数据库,但其中没有表。该应用程序必须在数据库中创建一些表,然后开始使用它们。我想知道,有没有办法在 Linq to SQL 中做到这一点?
您可以以编程方式执行此操作。即您可以根据给定的参数以编程方式创建您的表格,也可以建立表格之间的关系...... :)
由于没有直接函数create table,您可以使用ExecuteCommand- 方法DataContext运行一些 T-SQL 语句来创建表。
ExecuteCommand
DataContext