Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
The square bracket thing isn't going to work (just tried it..boom). The issue with the custom properties is that the BO mapper will still map it incorrectly and anything I can think of fix that (like mapping to a dummy table) would break updates/inserts/deletes. I guess you could NOT map it and custom write what you need (i.e. all the custom properties, figure out what in the designer file you'd need to replicate)...but that seem like a huge pain.
If you have access to the database (i.e. you can add some other objects to it), you might consider a few things:
- Dummy tables that you map against and then sprocs for inserts/updates/deletes.
- You might have a "front-end" table that has an INSTEAD OF trigger, which in turn updates the actual table.
- An updatable view that you'd map against and then would allow updates/inserts/deletes.
Just throwing out some ideas. Not sure any fit your needs.
|