annotate Source/Data/Linq/Settings.cs @ 5:f7d63a092920
Исправлено условие Where в тех случаях, когда репозитарий не является генериком
author |
cin |
date |
Tue, 10 Mar 2015 16:02:11 +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 }
|