using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.Data;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.Serialization;
using System.ComponentModel;
using System;
namespace dasBlog.Storage.SqlServer{
public partial class dasBlogStorageSqlDataContext : System.Data.Linq.DataContext
{
public dasBlogStorageSqlDataContext() :
base(Properties.Settings.Default.dasBlogStorageSqlConnectionString,
mappingSource)
{
OnCreated();
}
}
}
|