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 list = dc.Orders. | |
| Join(dc.Order_Details, | |
| o => o.OrderID, od => od.OrderID, | |
| (o, od) => new | |
| { | |
| OrderID = o.OrderID, | |
| OrderDate = o.OrderDate, | |
| ShipName = o.ShipName, | |
| Quantity = od.Quantity, | |
| UnitPrice = od.UnitPrice, |
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
| function isValidEmailAddress(emailAddress) { | |
| var pattern = /^([a-z\d!#$%&'*+\-\/=?^_`{|}~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+(\.[a-z\d!#$%&'*+\-\/=?^_`{|}~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+)*|"((([ \t]*\r\n)?[ \t]+)?([\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|\\[\x01-\x09\x0b\x0c\x0d-\x7f\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))*(([ \t]*\r\n)?[ \t]+)?")@(([a-z\d\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|[a-z\d\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF][a-z\d\-._~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]*[a-z\d\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])\.)+([a-z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|[a-z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF][a-z\d\-._~\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]*[a-z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])\.?$/i; | |
| return pattern.test(emailAddress); | |
| }; | |
| if( !isValidEmailAddress( emailaddress ) ) { /* do stuff here */ } |
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
| Image image = Image.FromFile(fileName); | |
| Image thumb = image.GetThumbnailImage(120, 120, ()=>false, IntPtr.Zero); | |
| thumb.Save(Path.ChangeExtension(fileName, "thumb")); |
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
| https://github.com/Yalantis/FlipViewPager.Draco | |
| https://github.com/pedrovgs/DraggablePanel | |
| // Online Ödeme Yöntemi | |
| https://www.iyzico.com/iyzipos?gclid=Cj0KCQjw9uHOBRDtARIsALtCa95xHJs9pkesNKGIvxNCcZ9rRM85bDvQCkYk2-4b1NLpcqrElcY2DkkaAjpJEALw_wcB |
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
| SELECT | |
| t.NAME AS TableName, | |
| i.name as indexName, | |
| p.[Rows], | |
| sum(a.total_pages) as TotalPages, | |
| sum(a.used_pages) as UsedPages, | |
| sum(a.data_pages) as DataPages, | |
| (sum(a.total_pages) * 8) / 1024 as TotalSpaceMB, | |
| (sum(a.used_pages) * 8) / 1024 as UsedSpaceMB, |