Mercurial > pub > bltoolkit
annotate Source/Data/Linq/Settings.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
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 } |