すべての都市を選択するこれがあります:
ExecuteStoreCommand<MCT_DBEntities>("select * from cities", ConnectionResolver.DB_Connection);
を Lambda に変換しようとしていますが、どうすれば に伝えられSELECT *
ますか?
GetWithExpression<city, MCT_DBEntities>(u => u.SelectMany, ConnectionResolver.DB_Connection);
編集:
private static TValue RetryGetWithExpression<U,T, TValue>(Func<ObjectSet<T>, TValue> func, String connection, Int32 retryInfiniteLoopGuard = 0)
where T : class
where U : ObjectContext
{
Microsoft.Practices.TransientFaultHandling.RetryPolicy policy = RetryPolicyProvider.GetSqlAzureRetryPolicy();
using (U entitiesContext = (U)Activator.CreateInstance(typeof(U), new[] { connection }))
{...}