索引器的扩展方法,它们会好吗?
我正在玩一些重新水合 POCO 的代码。
代码围绕从 SqlDataReader 返回的行进行迭代,并使用反射从列值中分配属性。在我的调用堆栈中,我有一个这样的代码:-
poco.Set("Surname", "Smith"); // uses extension method ...
Set 方法被编写为扩展方法。
能写出这样的代码就好了
poco["Surname"] = "Smith"; // extension methods for indexers ?
即我想为索引器写一个扩展方法
.Net 没有索引器的扩展方法有充分的理由吗?其他人对扩展方法索引器有其他好的用途吗?
顺便说一句……如果我们可以为索引器编写扩展方法,那么我们可以编写这样的代码……</p>
var poco = PocoFactory();
poco.Surname = “Smith”; // is this JavaScript ...
poco[Surname] = “Smith” ; // … or is this c# or both
我的代码中的一些片段
/////////////////////////////////////////////
// Client calling code
IDab dab = DabFactory.Create( "Northwind" );
string sql = @"select * from Customers ";
var persons = dab.ExecuteReader<NorthwindCustomer>(sql);
if (dab != null{
Assert.That(persons[0].CustomerID , Is.EqualTo("ALFKI"));}
/////////////////////////////////////////////
List<T> IDab.ExecuteReader<T>(string commandText)
{
List<T> pocos = new List<T>();
// setup connection
SqlDataReader reader = command.ExecuteReader(CommandBehavior.CloseConnection);
while (reader.Read())
{
Dictionary<string, int> colMappings = null ;
if (colMappings == null){
colMappings = reader.GetSqlDataReaderColumnMappings();}
T poco = new T();
poco.DbToMem<T>(reader, colMappings);
pocos.Add(poco);
}
}
// connection cleanup ...
return pocos ;
}
// the set extension method signature
public static void Set<T>(this T thisClientObject, string thisPropertyName, object newValue) where T : class