SQL Server Compact, можно ли использовать с SL & Flash дизайнерами?
Код: Выделить всё
protected void Page_Load(object sender, EventArgs e) {
StiConfig.Services.Add(new StiSqlCeAdapterService());
StiConfig.Services.Add(new StiSqlCeDatabase());
var report = new StiReport();
string applicationDirectory = HttpContext.Current.Server.MapPath(String.Empty);
report.Dictionary.Databases.Add(new StiSqlCeDatabase("Test", string.Format("DataSource={0}\\App_Data\\Test.sdf", applicationDirectory)));
cWebDesignerSL.Report = report;
}