0

is there any way in bltoolkit how to add to an entity property which is not mapped to the database table?

something like:

[NoMap()]
public string Something {get; set;}

? Thanks

Wally_the_Walrus
  • 219
  • 1
  • 5
  • 17

1 Answers1

4

Just use the MapIgnore attribute

[MapIgnore()]
public string Something {get; set;}