Details
Assignee
UnassignedUnassignedReporter
József KanczlerJózsef KanczlerLabels
Components
Affects versions
Priority
MajorWho's Looking?
Open Who's Looking?
Details
Details
Assignee
Unassigned
UnassignedReporter
József Kanczler
József KanczlerLabels
Components
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created November 25, 2011 at 11:53 AM
Updated October 12, 2017 at 11:26 AM
The ByCode mapping doesn't support to set the SqlCheck setting for the custom sql commands.
The solution for the problem:
1.) I implemented a SqlCheck enumeration with 'None', 'Rowcount', 'Param' values (NHibernate.Mapping.ByCode.SqlCheck).
2.) The IEntitySqlsMapper interface was extended by the overloads for the SqlInsert, SqlUpdate and SqlDelete method.
For example:
void SqlInsert(string sql, SqlCheck sqlCheck);
3.) I implement the new methods for the the classes that implements the IEntitySqlsMapper.
For example:
or