Mercurial > pub > bltoolkit
annotate Source/Data/Linq/Settings.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 namespace BLToolkit.Data.Linq | |
4 { | |
5 public static class Settings | |
6 { | |
7 #if SILVERLIGHT | |
8 public static Func<string,IDataContext> CreateDefaultDataContext = config => { throw new InvalidOperationException(); }; | |
9 #else | |
10 public static Func<string,IDataContext> CreateDefaultDataContext = config => new DbManager(config ?? DbManager.DefaultConfiguration); | |
11 #endif | |
12 } | |
13 } |