annotate Source/Data/Sql/ISqlTableSource.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author |
cin |
date |
Wed, 29 Nov 2017 12:43:52 +0300 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3
|
|
4 namespace BLToolkit.Data.Sql
|
|
5 {
|
|
6 public interface ISqlTableSource : ISqlExpression
|
|
7 {
|
|
8 SqlField All { get; }
|
|
9 int SourceID { get; }
|
|
10 SqlTableType SqlTableType { get; }
|
|
11 IList<ISqlExpression> GetKeys(bool allIfEmpty);
|
|
12 }
|
|
13 }
|