IQueryRunnerGetAccountEquity Method (IEnumerableInt64) |
Namespace: C2ExplorerServiceStack.Logic.Interfaces
IEnumerable<IAccountEquityPoint> GetAccountEquity( IEnumerable<long> SystemIds )
var SystemIds = ....; var equities = from eq in C2EQUITY where SystemIds.Contains(eq.SystemId) select new AccountEquityPoint() { DateTime = eq.DateTime, SystemId = eq.SystemId, Value = eq.Value };