Message 1 of 4
DBObject vs. Entity
Not applicable
05-31-2012
01:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm really newb in autocad.net. I didn't understand clearly about these type.
in code from Mr. Kean Walmsley:
Transactiontr = doc.TransactionManager.StartTransaction();
using (tr)
{
DBObject obj = tr.GetObject(id, OpenMode.ForWrite);
....
tr.Commit();
}
But I use type Entity also can get the same result. So what is different between them. And how to use them in a good way.