我正在寻找一种方法来创建以params object[]
作为参数的Generic GetById,知道找到key / s字段并知道找到相关实体。
在寻找解决方案的过程中,我想到了一个返回PK字段定义的泛型方法,以及一个可以根据字段返回实体的泛型方法。
我正在寻找可以在表格中使用的内容,其中一个或多个字段作为主键。
修改
一个或多个字段作为主键示例=
表客户有(CompanyId,CustomerName,Address,CreateDate)
客户的主键是CompanyId是客户名称。
我正在寻找通用的GetById,它将知道如何处理这些表。
答案 0 :(得分:4)
如果您不知道密钥中有多少成员以及它们具有哪些类型,则无法获得“通用”方法。我将my solution for single key修改为多个键但是你可以看到它不是通用的 - 它使用了定义键的顺序:
// Base repository class for entity with any complex key
public abstract class RepositoryBase<TEntity> where TEntity : class
{
private readonly string _entitySetName;
private readonly string[] _keyNames;
protected ObjectContext Context { get; private set; }
protected ObjectSet<TEntity> ObjectSet { get; private set; }
protected RepositoryBase(ObjectContext context)
{
if (context == null)
{
throw new ArgumentNullException("context");
}
Context = context;
ObjectSet = context.CreateObjectSet<TEntity>();
// Get entity set for current entity type
var entitySet = ObjectSet.EntitySet;
// Build full name of entity set for current entity type
_entitySetName = context.DefaultContainerName + "." + entitySet.Name;
// Get name of the entity's key properties
_keyNames = entitySet.ElementType.KeyMembers.Select(k => k.Name).ToArray();
}
public virtual TEntity GetByKey(params object[] keys)
{
if (keys.Length != _keyNames.Length)
{
throw new ArgumentException("Invalid number of key members");
}
// Merge key names and values by its order in array
var keyPairs = _keyNames.Zip(keys, (keyName, keyValue) =>
new KeyValuePair<string, object>(keyName, keyValue));
// Build entity key
var entityKey = new EntityKey(_entitySetName, keyPairs);
// Query first current state manager and if entity is not found query database!!!
return (TEntity)Context.GetObjectByKey(entityKey);
}
// Rest of repository implementation
}
答案 1 :(得分:2)
我不知道这会有多大用处,因为它是通用的,但你可以这样做:
public TEntity GetById<TEntity>(params Expression<Func<TEntity, bool>>[] keys) where TEntity : class
{
if (keys == null)
return default(TEntity);
var table = context.CreateObjectSet<TEntity>();
IQueryable<TEntity> query = null;
foreach (var item in keys)
{
if (query == null)
query = table.Where(item);
else
query = query.Where(item);
}
return query.FirstOrDefault();
}
然后你可以这样称呼它:
var result = this.GetById<MyEntity>(a => a.EntityProperty1 == 2, a => a.EntityProperty2 == DateTime.Now);
免责声明:这真的不是一个GetByid,它真的是“让我给你一些参数并给我第一个匹配的实体”。但话虽如此,它使用泛型,如果匹配并且您基于主键进行搜索,它将返回实体。
答案 2 :(得分:0)
我认为你无法实现这样的事情,因为你无法在每个传递的值与适当的关键字段之间加入。
我建议为每个实体使用自定义方法:
假设Code
和Name
是Person
表中的键:
public IEnumerable<Person> ReadById(int code, string name)
{
using (var entities = new Entities())
return entities.Persons.Where(p => p.Code = code && p.Name = name);
}
答案 3 :(得分:0)
好的,这是我第二次尝试。我认为这对你有用。
public static class QueryExtensions
{
public static Customer GetByKey(this IQueryable<Customer> query, int customerId,string customerName)
{
return query.FirstOrDefault(a => a.CustomerId == customerId && a.CustomerName == customerName);
}
}
所以这种扩展方法背后的美妙之处在于你现在可以做到这一点:
Customer customer = Db.Customers.GetByKey(1,"myname");
你显然必须为每种类型做这件事,但如果你需要它可能是值得的:)
答案 4 :(得分:0)
我认为设置有点麻烦,但我确实认为创建可重用的模式从长远来看会有所收获。我只是写了这篇文章,还没有进行测试,但是我基于一个经常使用的搜索模式。
所需的接口:
public interface IKeyContainer<T>
{
Expression<Func<T, bool>> GetKey();
}
public interface IGetService<T>
{
T GetByKey(IKeyContainer<T> key);
}
示例实体:
public class Foo
{
public int Id { get; set; }
}
public class ComplexFoo
{
public int Key1 { get; set; }
public int Key2 { get; set; }
}
实施示例:
public class FooKeyContainer : IKeyContainer<Foo>
{
private readonly int _id;
public FooKeyContainer(int id)
{
_id = id;
}
public Expression<Func<Foo, bool>> GetKey()
{
Expression<Func<Foo, bool>> key = x => x.Id == _id;
return key;
}
}
public class ComplexFooKeyContainer : IKeyContainer<ComplexFoo>
{
private readonly int _id;
private readonly int _id2;
public ComplexFooKeyContainer(int id, int id2)
{
_id = id;
_id2 = id2;
}
public Expression<Func<ComplexFoo, bool>> GetKey()
{
Expression<Func<ComplexFoo, bool>> key = x => x.Key1 == _id && x.Key2 == _id2;
return key;
}
}
public class ComplexFooService : IGetService<ComplexFoo>
{
public ComplexFoo GetByKey(IKeyContainer<ComplexFoo> key)
{
var entities = new List<ComplexFoo>();
return entities.Where(key.GetKey()).FirstOrDefault();
}
}
用法:
var complexFoo = ComplexFooService.GetByKey(new ComplexFooKeyContainer(1, 2));