Hi all,
Pardon my ignorance -- trying to get up to speed here. Thank you for the work you all as contributors do. Please redirect me if this is the wrong forum for such a question.
Firstly, is this available as of 3.3.2.4000? And if someone could explain to me how to check which pushes to master are included in which version, that would stop me from having to ask this ever again :)
Secondly, when using the confORM approach, does this change mean that I should be doing something along the lines of (see the bold line):
var cfg = new Configuration();
cfg
.DataBaseIntegration(db => {
db.ConnectionString = "[Redacted]";
db.Dialect<Oracle10gDialect>();
db.Driver<OracleManagedDataClientDriver>();
db.KeywordsAutoImport = Hbm2DDLKeyWords.AutoQuote;
db.BatchSize = 500;
})
As far as I can tell, there is no such option -- only OracleDataClientDriver (which is why I'm asking to ensure I have the version with this support).
Thank you,
Sean