Last active
December 30, 2015 19:29
-
-
Save masaru-b-cl/7874641 to your computer and use it in GitHub Desktop.
元データ作成
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var q = from i in Enumerable.Range(1, 100) | |
| from j in Enumerable.Range(1, 100) | |
| from k in Enumerable.Range(1, 10) | |
| select new Sales | |
| { | |
| Customer = string.Format("取引先{0:d2}", i), | |
| Product = string.Format("商品{0:d2}", j), | |
| UnitPrice = Convert.ToDecimal(j * 100), | |
| Quantity = k | |
| }; | |
| var source = q.ToArray(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment