annotate Source/Mapping/Fluent/MappedProperty.cs @ 6:11b6da379593
Исправлена странная ошибка при использовании OfType<...>().Where(...)
author |
cin |
date |
Mon, 05 Dec 2016 05:50:52 +0300 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5
|
|
6 namespace BLToolkit.Mapping.Fluent
|
|
7 {
|
|
8 public class MappedProperty
|
|
9 {
|
|
10 public string Name { get; internal set; }
|
|
11 public Type Type { get; internal set; }
|
|
12 public Type ParentType { get; internal set; }
|
|
13 }
|
|
14 }
|