In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "how to understand LINQ fuzzy query". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to understand LINQ fuzzy query.
The significance of LINQ fuzzy query implementation:
To avoid being inefficient even if implemented, LINQ provides us with a wealth of fuzzy query methods, such as looking up a person surnamed Zhang in the Employee table:
DBDataClassesDataContext dbdata = new DBDataClassesDataContext (); var query = from employee in dbdata.Employees where employee. EmployeeName.StartsWith ("Zhang") select employee
When the LINQ fuzzy query is actually executed, this sentence is translated into:
SELECT [t0]. [EmployeeId]. [DepId], [t0]. [EmployeeName], [t0]. [EmployeeSalary] FROM [dbo]. [Employee] AS [t0] WHERE [t0]. [EmployeeName] LIKE @ p0
In such a SQL statement, the @ p0 parameter is executed with "%", that is, any eligible records that start with @ p0 are taken out. Such methods also include Contains, EndsWith and so on in LINQ.
At this point, I believe that everyone on the "LINQ fuzzy query how to understand" have a deeper understanding, might as well to the actual operation of it! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.