private static ServerFeatureRow DbFeatureRowCreator(IFieldDataReader r) { StorageFeature.Id = r.GetInt32(0); StorageFeature.Name = r.GetString(1); StorageFeature.ContextId = r.GetInt32(2); return(StorageFeature); }
private static FeatureExceptionEntryRow DbFeatureExceptionEntryRowCreator(IFieldDataReader r) { return(new FeatureExceptionEntryRow(r.GetInt32(0), r.GetDateTime(1), r.GetInt32(2))); }
private static FeatureExceptionRow DbFeatureExceptionRowCreator(IFieldDataReader r) { return(new FeatureExceptionRow(r.GetInt32(0), r.GetString(1))); }
public static int GetInt(IFieldDataReader r, int index, int defaultValue = 0) { return(r.IsDbNull(index) ? defaultValue : r.GetInt32(index)); }
private static DbFeatureRow DbFeatureRowCreator(IFieldDataReader r) { return new DbFeatureRow(r.GetInt32(0), r.GetString(1), r.GetInt32(2)); }
private static DbFeatureExceptionEntryRow DbFeatureExceptionEntryRowCreator(IFieldDataReader r) { return new DbFeatureExceptionEntryRow(r.GetInt32(0), r.GetDateTime(1), r.GetInt32(2)); }
private static DbFeatureContextRow DbContextCreator(IFieldDataReader r) { return new DbFeatureContextRow(r.GetInt32(0), r.GetString(1)); }