Frage

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

War es hilfreich?

Lösung

Just use the MapIgnore attribute

[MapIgnore()]
public string Something {get; set;}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top