I have an issue with my Linq to SQL Data Context no submitting in my console application.
The following code is all that there is in the main() method.
BlogRollerDataContext bdc = new BlogRollerDataContext();
bdc.Urls.InsertOnSubmit(new Url()
{
Approved = false,
UrlTo = "http://www.google.com/",
UrlFrom = ""
});
bdc.SubmitChanges();