annotate Source/ServiceModel/LinqServiceResult.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author |
cin |
date |
Fri, 22 Aug 2014 17:34:46 +0400 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3
|
|
4 namespace BLToolkit.ServiceModel
|
|
5 {
|
|
6 public class LinqServiceResult
|
|
7 {
|
|
8 public int FieldCount { get; set; }
|
|
9 public int RowCount { get; set; }
|
|
10 public Guid QueryID { get; set; }
|
|
11 public string[] FieldNames { get; set; }
|
|
12 public Type[] FieldTypes { get; set; }
|
|
13 public Type[] VaryingTypes { get; set; }
|
|
14 public List<string[]> Data { get; set; }
|
|
15 }
|
|
16 }
|