-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[C# Feature] Convenient combination of foreach and LINQ #1938
Comments
How about: from item in new[] {"One", "Two", "Three" }
where item == "Two"
foreach {
Debug.WriteLine(item.ToString());
} |
OK, if we are opening the Pandora box of syntactic sugar now, let's not stop at the frosting level: foreach item in new[] {"One", "Two", "Three" }
where item == "Two"
{
Debug.WriteLine(item.ToString());
} |
Both options look like extending LINQ rather than integrating it. To me having two |
Actually @dsaf, I'd say that @apskim's approach is merely your original proposal, coupled with two syntax changes. The first change is to remove the The second change removes the parentheses. This could be a change to the general case of foreach (var x in myCollection)
{
// ...
} to be rewritten as foreach var x in myCollection
{
// ...
} I think removing the parentheses would require a braced body, otherwise perhaps the syntax would become ambiguous. |
Oops, I missed that the foreach x in myCollection
{
//...
} And foreach x in myCollection
where x < 7
{
//...
} |
Just to clarify: my proposal was mostly sarcastic :) |
I don't think it's just for "the sake of sugaring". I feel there are clear advantage to reducing: var filteredCollection =
from t in myCollection
where t < 7
select t;
foreach (var x in filteredCollection)
{
//...
} to foreach x in myCollection
where x < 7
{
//...
} Besides it obviously reducing the amount of code, it reduces the number of variables by removing Also imagine if it were more complicated (example based on MSDN LINQ samples): var query =
from c in svcContext.ContactSet
join a in svcContext.AccountSet
on c.ContactId equals a.PrimaryContactId.Id
where c.LastName == "Wilcox" || c.LastName == "Andrews"
where a.Address1_Telephone1.Contains("(206)")
|| a.Address1_Telephone1.Contains("(425)")
select new
{
Contact = new Contact
{
FirstName = c.FirstName,
LastName = c.LastName,
},
Account = new Account
{
Address1_Telephone1 = a.Address1_Telephone1
}
};
foreach (var record in query)
{
Console.WriteLine("Contact Name: {0} {1}",
record.Contact.FirstName, record.Contact.LastName);
Console.WriteLine("Account Phone: {0}",
record.Account.Address1_Telephone1);
} could become more succinctly foreach c in svcContext.ContactSet
join a in svcContext.AccountSet
on c.ContactId equals a.PrimaryContactId.Id
where c.LastName == "Wilcox" || c.LastName == "Andrews"
where a.Address1_Telephone1.Contains("(206)")
|| a.Address1_Telephone1.Contains("(425)")
{
Console.WriteLine("Contact Name: {0} {1}", c.FirstName, c.LastName);
Console.WriteLine("Account Phone: {0}", a.Account.Address1_Telephone1);
} because (in this example) it eliminates the need for temporary variables holding anonymous types. |
@bondsbw I don't think this adds much. The code var filteredCollection =
from t in myCollection
where t < 7
select t;
foreach (var x in filteredCollection)
{
//...
} Can already be shortened to: foreach(var x in myCollection.Where(x => x < 7))
{
//...
} Also the code: var query =
from c in svcContext.ContactSet
join a in svcContext.AccountSet
on c.ContactId equals a.PrimaryContactId.Id
where c.LastName == "Wilcox" || c.LastName == "Andrews"
where a.Address1_Telephone1.Contains("(206)")
|| a.Address1_Telephone1.Contains("(425)")
select new
{
Contact = new Contact
{
FirstName = c.FirstName,
LastName = c.LastName,
},
Account = new Account
{
Address1_Telephone1 = a.Address1_Telephone1
}
}; can already be shortened to: var query =
from c in svcContext.ContactSet
join a in svcContext.AccountSet
on c.ContactId equals a.PrimaryContactId.Id
where c.LastName == "Wilcox" || c.LastName == "Andrews"
where a.Address1_Telephone1.Contains("(206)")
|| a.Address1_Telephone1.Contains("(425)")
select new
{
c.FirstName,
c.LastName,
a.Address1_Telephone1
}; and if you really want to avoid the anonymous type projection entirely you can write: var query =
from c in svcContext.ContactSet
join a in svcContext.AccountSet
on c.ContactId equals a.PrimaryContactId.Id
where c.LastName == "Wilcox" || c.LastName == "Andrews"
where a.Address1_Telephone1.Contains("(206)")
|| a.Address1_Telephone1.Contains("(425)")
select (Action)(()=>
{
Console.WriteLine("Contact Name: {0} {1}", c.FirstName, c.LastName);
Console.WriteLine("Account Phone: {0}", a.Account.Address1_Telephone1);
});
foreach(var a in query)
{
a();
} Also the proposed example: foreach c in svcContext.ContactSet
join a in svcContext.AccountSet
on c.ContactId equals a.PrimaryContactId.Id
where c.LastName == "Wilcox" || c.LastName == "Andrews"
where a.Address1_Telephone1.Contains("(206)")
|| a.Address1_Telephone1.Contains("(425)")
{
Console.WriteLine("Contact Name: {0} {1}", c.FirstName, c.LastName);
Console.WriteLine("Account Phone: {0}", a.Account.Address1_Telephone1);
} is confusing because the scoping is, at least to me, non obvious. Since c is the range variable following Other proposals for expanding LINQ syntax, such as the one proposing the ability to specify an IEqualityComparer inline (#100) add real value. |
Keeping range variables in scope is, in my mind, a natural part of the proposal. I don't really see the confusion, since range variables are similarly in scope for any |
The problem with expressing the var q = from x in Enumerable.Range(0, 10)
select new String('X', x) into letters
from y in letters
select x; // compiler error, x is not in scope Also: var q = from x in Enumerable.Range(0, 10)
select new String('X', x) into letters // here x is an int
from x in letters
select x; // here x is a char This is why I would prefer that terminating clauses like |
@bondsbw The confusion I was referring to was precisely due to the
Personally I feel that LINQ expression are properly language integrated for the following reasons:
|
Basically, what @HaloFour has suggested, but with a from item in list do WriteLine(item); |
@alrz Under peril of being accused of bikeshedding, I want to say that |
So are you folks all fine with not being able to return/break from a loop? |
@gafter Why wouldn't that be possible? If like @alrz suggested this keyword was followed by an embedded-statement it would seem reasonable that said statement, like any from number in Enumerable.Range(0, 10)
foreach {
if (number < 5) continue;
else if (number == 8) break;
else if (number == 9) return "oops";
}; Or is this a question of implementation, e.g. passing embedded-statement to an extension method like |
The reason that I chose
Actually, this proposal suggests to make query-expression a statement. So do-clause here, shouldn't translate to an extension method call, rather, it should translate to a regular from foo in foos
from bar in foo.Bars
where bar > 0
do WriteLine($"{foo}:{bar}"); would translate to foreach(var foo in foos)
foreach(var bar in foo.Bars.Where(bar => bar > 0))
WriteLine($"{foo}:{bar}"); Normally, query expressions must end with a select- or group-clause. In the statement context, they would have to end with do-clause or whatever. And as you said, from item in list do {
// continue;
// break;
// return;
}; This doesn't look magical, compared to: do {
// continue;
// break;
// return;
} while( ... ); |
@HaloFour There is no efficient way to pass am embedded statement to an extension method. Its not that I'm against that sort of thing... see my talks about "closures" for Java circa 2006-2007 where I showed exactly how to do it and provided a language extension and implementation. I just don't know how to do it without a thousand-fold performance penalty on the CLR. |
@alrz I wouldn't recommend going the route of trying to use an extension method anyway. I was just fishing for what @gafter was intending by his question regarding not being able to break/return/etc from the loop. I agree that if such a clause were to exist that it should just translate into a
into:
|
@HaloFour I see now what you had in mind. That does make sense to me. However I think I prefer the syntax @alrz suggests from item in new[] {"One", "Two", "Three" }
where item == "Two"
do
{
Debug.WriteLine(item.ToString());
} I do believe, however, that this should be done using the Linq methods, such as |
@gafter Works for me. I agree that the rest of the LINQ query still using the LINQ extension methods: from item in new[] { "One", "Two", "Three" }
where item == "Two"
do Debug.WriteLine(item.ToString());
// equivalent to
var $temp = (new [] { "One", "Two", "Three" }).Where(item => item == "Two");
foreach (var item in $temp) Debug.WriteLine(item.ToString()); |
I like this idea. Placing the do clause at the end is nicely readable and keeps the scoping straightforward. One thing that occurs to me is that this could be quite useful as a more general kind of side effecting interjective operator, in the vein of Observable.Do. |
So, you're operating in the assumption of infinite resources to implement zero-cost features. is it? |
@paulomorgado I'd say it's up to the language design team to both determine whether or not a change like this fits within the philosophy of what LINQ is supposed to be (and whether or not that still applies) as to the priority of each of these proposals. I don't think that anyone assumes that every proposal will be immediately considered and implemented. As for from item in new[] {"One", "Two", "Three" }
where item == "Two"
select new Something(item) into item
do
{
Undo(item);
} @aluanhaddad @TonyValenti As of now this |
@HaloFour yes, it is a tradeoff. Personally, I would prefer the benefits of an extension method implementation, so I made some arguments for that, but it would still be useful if implemented as a direct translation to |
Here is an idea: var items = from x in source select x |.ToList(); On Tuesday, December 15, 2015, Shimmy notifications@github.com wrote:
Tony Valenti |
@weitzhandler @TonyValenti Not related here. Probably #100, #3571, #3486, #6489. All duplicates though. |
@TonyValenti @alrz actually sounds like forward pipe with a special case for LINQ to prevent parentheses #5445. Not sure an operator would be idiomatic, since they have already introduced |
@dsaf on that idea, see #100 (comment). |
It'd be nice to differ the semicolon requirement for the embedded-statement in F(list => from foo in list do WriteLine(foo.Bar)); because query-expression is an expression afterall. Also I think it makes sense to turn from item in list
let foo = item.ComputeFoo()
do { ... }
foreach(var item in list) {
let foo = item.ComputeFoo();
// ...
} This'll be a great win if we were using patterns in |
@alrz I think this proposal is for a new statement form, not a new expression form. My working vision of this is in #1938 (comment) |
instead of foreach (var item in from xItem in new[] {"One", "Two", "Three" }
where xItem == "Two"
select xItem)
{
Debug.WriteLine(item);
} you should use MoreLINQ and Command Query Separation (CQS) and write it like this: // Query
var items = new[] {"One", "Two", "Three" }.Select(i => i == "Two");
// Command
items.ForEach(Debug.WriteLine); |
@MovGP0 you mean to get public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
{
foreach(var element in source)
{
action(source);
}
} I've tried it, added it to many projects, but I do not like how it feels as compared to Also, that assumes you only need to support method syntax. I prefer query syntax where available, but I like both. |
@aluanhaddad doesn't really matter which syntax you use, as long as you stick to CQS. Using another syntax only means that you have more lines of code to type: // query
var items = from item in new[] {"One", "Two", "Three" }
where item == "Two"
select item;
// command
foreach (var item in items)
{
Debug.WriteLine(item);
} |
@MovGP0 That depends on the syntax; several examples here would have reduced the number of lines. |
@MovGP0 How do I |
@gafter by putting the query into a separate (extension) method, which returns an Do you have a code example? |
Related to "How do I break or continue?" I think it is worth deciding what the return value from "do" is. Is a linq statement with "do" a statement or an expression? My preference is that "do" act like either an Action<> or a Func<> and return either: Here are a few different ways the syntax could look for different things:
|
@TonyValenti That var ott = new[] {"One", "Two", "Three" }; //This returns a List<String>
var firstNotTwo = ott.Where(item => item != "Two").ToList(); //This emulates a FOR loop and returns void:
var indexedItems = ott.Select((item, index) => new { Item = item, Index = index }); // query
indexedItems.ForEach(i => Console.WriteLine($"Item {i.Index}: {i.Item}"); // command //This returns void:
var two = ott.Single(item => item == "Two"); // query
Debug.WriteLine(two); // command //This returns an IEnumerable<String>
var notTwo = ott.Where(item => item != "Two"); //This returns an IEnumerable<String>
var notTwo = ott.TakeWhile(item => item != "Two"); //This returns a String
var firstNotTwo = ott.First(item => item != "Two"); |
@MovGP0 There may always be a great debate about whether query syntax is better than method chaining, but this proposal is to make query syntax better for those who prefer it. (Though I would love to see a Besides, I don't think executing two statements directly in succession (in the same block of code) is really any more/less compliant with the spirit of CQS than a single statement would be. Just my 2 cents. |
@bondsbw You're completely right. I wasn't going to say anything but the CQS thing is being taken way out of context in my opinion. |
The proposed construct is intended to be a statement form. |
Now tracked at dotnet/csharplang#101 |
I would argue that embedded is a better term for how the syntax feels at the moment.
Currently:
Suggested:
The text was updated successfully, but these errors were encountered: