I got this:
DataTable dtEntity = CreateDataTable(); drEntity = dtEntity.NewRow();
Then I add data to the row (or not). Lots of code, real
I prefer approach of Tommy Carlier, but with a little change.
foreach (DataColumn column in row.Table.Columns) if (!row.IsNull(column)) return false; return true;
I suppose this approach looks more simple and bright.