Click here to Skip to main content
15,880,503 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a discriminator column in the which i need to use for select insert and update. I need to update and select the Employee type. I have following code in the mapping xml file.

XML
<discriminator column="EmployeeType" type="String"/>
<property name="EmployeeType" column="EmployeeType" update="false" insert="false"   type="String" />


my question is that EmployeeType column should be used for update,insert and select...if i use update="false" insert="false" then it is working fine for Employeetype in the select statement but not for the update or insert . but when i use update="true" or insert="true"...it is not working for even select statement...I need to have EmployeeType discriminator column for select/insert/update
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900