Tuesday, August 28, 2012
Oracle ADO.NET EF with transactions
ModelContext.Connection.Open();
using (var tx = ModelContext.Connection.BeginTransaction())
{
try
{
// do stuff...
tx.Commit();
return true;
}
catch
{
tx.Rollback();
throw;
}
finally
{
if (ModelContext.Connection != null)
ModelContext.Connection.Close();
}
}
Friday, August 17, 2012
How to model a thought/idea (in AI context)?
That is the (ultimate) question for AI...
Derived question: How can we model the thought that gave birth to that (or any) question?
Derived question: How can we model the thought that gave birth to that (or any) question?
Monday, August 6, 2012
Subscribe to:
Posts (Atom)