patterncsharpMinor
Find all collection properties of an object and get their values
Viewed 0 times
valuesallpropertiescollectiongetfindandobjecttheir
Problem
I have a chunk of code that get's all of the
End goal is to see which properties have child objects in them and
thus finding out how many dependents the object has.
The object is an EntityFramework entity so the children would be other entities. I'm not entirely convinced that I'm actually grabbing the correct properties (although in my tests so far it works) and I'm not convinced I'm parsing them efficiently either. Here's the code, and I welcome any recommendations:
ICollection properties of the passed in object and then takes all of their values and adds them to another ICollection. End goal is to see which properties have child objects in them and
thus finding out how many dependents the object has.
The object is an EntityFramework entity so the children would be other entities. I'm not entirely convinced that I'm actually grabbing the correct properties (although in my tests so far it works) and I'm not convinced I'm parsing them efficiently either. Here's the code, and I welcome any recommendations:
public class DependencyValidator :
IDependencyValidator
where TEntity : class {
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable>> Dependencies(
TEntity entity) {
if (entity == null) {
return Enumerable.Empty>>();
}
ICollection>> dependents = new List>>();
entity.GetType().GetProperties().Where(
p =>
this.IEnumerableType.IsAssignableFrom(p.PropertyType)
&& !this.StringType.IsAssignableFrom(p.PropertyType)).ForEach(
p => {
IEnumerable values = (p.GetValue(entity) as IEnumerable);
ICollection children = new List();
foreach (var value in values) {
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair>(p.Name, children));
});
return dependents;
}
}Solution
First up, let's clean up the formatting a bit.
Now let's use the
Your
ReSharper suggests replacing the inner loop with a LINQ expression, which I think looks alright.
Finally, we can make the fields static. ReSharper warns about this, but I think it's fine in this case.
```
public class DependencyValidator :
IDependencyValidator
where TEntity : class
{
private static readonly Type IEnumerableType = typeof(IEnumerable);
private static readonly Type StringType = typeof(string);
public IEnumerable>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty>>();
}
var dependents = new List>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => IEnumerableType.IsAssignableFrom(p.PropertyType) && !StringType.IsAssignableF
public class DependencyValidator :
IDependencyValidator
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty>>();
}
ICollection>> dependents = new List>>();
entity.GetType().GetProperties().Where(
p =>
this.IEnumerableType.IsAssignableFrom(p.PropertyType)
&& !this.StringType.IsAssignableFrom(p.PropertyType)).ForEach(
p =>
{
IEnumerable values = (p.GetValue(entity) as IEnumerable);
ICollection children = new List();
foreach (var value in values)
{
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair>(p.Name, children));
});
return dependents;
}
}Now let's use the
var keyword to make it less verbose.public class DependencyValidator :
IDependencyValidator
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty>>();
}
var dependents = new List>>();
entity.GetType().GetProperties().Where(
p =>
this.IEnumerableType.IsAssignableFrom(p.PropertyType)
&& !this.StringType.IsAssignableFrom(p.PropertyType)).ForEach(
p =>
{
var values = (p.GetValue(entity) as IEnumerable);
var children = new List();
foreach (var value in values)
{
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair>(p.Name, children));
});
return dependents;
}
}Your
ForEach method seems to be non-standard, so I'd like to get rid of that.public class DependencyValidator :
IDependencyValidator
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty>>();
}
var dependents = new List>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => this.IEnumerableType.IsAssignableFrom(p.PropertyType) && !this.StringType.IsAssignableFrom(p.PropertyType));
foreach (var property in properties)
{
var values = property.GetValue(entity) as IEnumerable;
var children = new List();
foreach (var value in values)
{
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair>(property.Name, children));
}
return dependents;
}
}ReSharper suggests replacing the inner loop with a LINQ expression, which I think looks alright.
public class DependencyValidator :
IDependencyValidator
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty>>();
}
var dependents = new List>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => this.IEnumerableType.IsAssignableFrom(p.PropertyType) && !this.StringType.IsAssignableFrom(p.PropertyType));
foreach (var property in properties)
{
var values = property.GetValue(entity) as IEnumerable;
var children = (from object value in values select value.ToString()).ToList();
dependents.Add(new KeyValuePair>(property.Name, children));
}
return dependents;
}
}Finally, we can make the fields static. ReSharper warns about this, but I think it's fine in this case.
```
public class DependencyValidator :
IDependencyValidator
where TEntity : class
{
private static readonly Type IEnumerableType = typeof(IEnumerable);
private static readonly Type StringType = typeof(string);
public IEnumerable>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty>>();
}
var dependents = new List>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => IEnumerableType.IsAssignableFrom(p.PropertyType) && !StringType.IsAssignableF
Code Snippets
public class DependencyValidator<TEntity> :
IDependencyValidator<TEntity>
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable<KeyValuePair<string, IEnumerable<string>>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty<KeyValuePair<string, IEnumerable<string>>>();
}
ICollection<KeyValuePair<string, IEnumerable<string>>> dependents = new List<KeyValuePair<string, IEnumerable<string>>>();
entity.GetType().GetProperties().Where(
p =>
this.IEnumerableType.IsAssignableFrom(p.PropertyType)
&& !this.StringType.IsAssignableFrom(p.PropertyType)).ForEach(
p =>
{
IEnumerable values = (p.GetValue(entity) as IEnumerable);
ICollection<string> children = new List<string>();
foreach (var value in values)
{
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair<string, IEnumerable<string>>(p.Name, children));
});
return dependents;
}
}public class DependencyValidator<TEntity> :
IDependencyValidator<TEntity>
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable<KeyValuePair<string, IEnumerable<string>>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty<KeyValuePair<string, IEnumerable<string>>>();
}
var dependents = new List<KeyValuePair<string, IEnumerable<string>>>();
entity.GetType().GetProperties().Where(
p =>
this.IEnumerableType.IsAssignableFrom(p.PropertyType)
&& !this.StringType.IsAssignableFrom(p.PropertyType)).ForEach(
p =>
{
var values = (p.GetValue(entity) as IEnumerable);
var children = new List<string>();
foreach (var value in values)
{
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair<string, IEnumerable<string>>(p.Name, children));
});
return dependents;
}
}public class DependencyValidator<TEntity> :
IDependencyValidator<TEntity>
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable<KeyValuePair<string, IEnumerable<string>>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty<KeyValuePair<string, IEnumerable<string>>>();
}
var dependents = new List<KeyValuePair<string, IEnumerable<string>>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => this.IEnumerableType.IsAssignableFrom(p.PropertyType) && !this.StringType.IsAssignableFrom(p.PropertyType));
foreach (var property in properties)
{
var values = property.GetValue(entity) as IEnumerable;
var children = new List<string>();
foreach (var value in values)
{
children.Add(value.ToString());
}
dependents.Add(new KeyValuePair<string, IEnumerable<string>>(property.Name, children));
}
return dependents;
}
}public class DependencyValidator<TEntity> :
IDependencyValidator<TEntity>
where TEntity : class
{
private readonly Type IEnumerableType = typeof(IEnumerable);
private readonly Type StringType = typeof(String);
public IEnumerable<KeyValuePair<string, IEnumerable<string>>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty<KeyValuePair<string, IEnumerable<string>>>();
}
var dependents = new List<KeyValuePair<string, IEnumerable<string>>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => this.IEnumerableType.IsAssignableFrom(p.PropertyType) && !this.StringType.IsAssignableFrom(p.PropertyType));
foreach (var property in properties)
{
var values = property.GetValue(entity) as IEnumerable;
var children = (from object value in values select value.ToString()).ToList();
dependents.Add(new KeyValuePair<string, IEnumerable<string>>(property.Name, children));
}
return dependents;
}
}public class DependencyValidator<TEntity> :
IDependencyValidator<TEntity>
where TEntity : class
{
private static readonly Type IEnumerableType = typeof(IEnumerable);
private static readonly Type StringType = typeof(string);
public IEnumerable<KeyValuePair<string, IEnumerable<string>>> Dependencies(TEntity entity)
{
if (entity == null)
{
return Enumerable.Empty<KeyValuePair<string, IEnumerable<string>>>();
}
var dependents = new List<KeyValuePair<string, IEnumerable<string>>>();
var properties = entity.GetType()
.GetProperties()
.Where(p => IEnumerableType.IsAssignableFrom(p.PropertyType) && !StringType.IsAssignableFrom(p.PropertyType));
foreach (var property in properties)
{
var values = property.GetValue(entity) as IEnumerable;
var children = (from object value in values select value.ToString()).ToList();
dependents.Add(new KeyValuePair<string, IEnumerable<string>>(property.Name, children));
}
return dependents;
}
}Context
StackExchange Code Review Q#57628, answer score: 5
Revisions (0)
No revisions yet.