Linq to Sql没有在控制台应用程序中提交对数据库文件的更改

时间:2009-12-13 04:10:47

标签: c# .net linq-to-sql console-application datacontext

我的Linq to SQL Datacontext无法在我的控制台应用程序中提交。

以下代码就是main()方法中的全部内容。

BlogRollerDataContext bdc = new BlogRollerDataContext();
bdc.Urls.InsertOnSubmit(new Url()
    { 
        Approved = false, 
        UrlTo = "http://www.google.com/", 
        UrlFrom = "" 
    });
bdc.SubmitChanges();

1 个答案:

答案 0 :(得分:0)

This可能会对您有所帮助。