I would like to create an extension method to be implemented like below (if it is even possible) which would be similar to the .ToString()
extension method. Can someone please point me in the right direction. I attempted to search it in Google and cannot locate anything.
DataTable table = db.GetInfo(UserId);
if (table.Rows.Count > 0)
{
bool b = table.Rows[0]["ColumnName"].MyExtensionMethod();
}
I would essentially like to simplify this:
bool b = Convert.IsDBNull(table.Rows[0]["ColumnName"]) ? false : bool.Parse(table.Rows[0]["ColumnName"].ToString());
to
bool b = table.Rows[0]["ColumnName"].DbBoolNullable();
Since the indexer of DataRow returns a System.Object, your best bet is something like the following:
However, I'd strongly advise against this, as since this is an extension method for
System.Object
(which every class in .NET inherits from), then this method will apply to every variable.A better way would probably to make an extension method for
DataRow
:Then you could use it like so: