$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GenericBuilder<TEntity> where TEntity : new() | |
{ | |
private readonly List<Func<TEntity, object>> setters; | |
public GenericBuilder() | |
{ | |
setters = new List<Func<TEntity, object>>(); | |
} | |
public GenericBuilder<TEntity> With(params Func<TEntity, object>[] props) |