AutoEncloseObjectNames
Indicates weather the business object will enclose the Field names and Table names with [ ] while running the SQL statement. By default this is set to false.
If you run a Find method on your object which has two fields called myField1, and myField2 and this property is set to true, your resulting SQL statement will look like SELECT [myField1], [myField2] From [myTable] (SQL Server) and for Oracle SELECT "myField1", "myField2" From "myTable".
Syntax
| C# | |
|---|
public bool AutoEncloseObjectNames {get; set;} |
Requirements
Target Platforms: .NET Framework 1.1 or .NET Framework 2.0
See Also