Custom extension method to simplify LINQ to SQL statement

后端 未结 3 1926
粉色の甜心
粉色の甜心 2021-01-23 21:07

I have a snippet of LINQ code that I need to use in a lot of queries

let catchmentId = Convert.ToInt32(
        phy.PhysicalProperty_binData.Substring(offset + 3         


        
3条回答
  •  忘掉有多难
    2021-01-23 21:32

    Wrong language (sorry) here it is in F# if people need.

    let catchmentId =  
        // Curry in invariant components.
        let newSubstr end = 
            phy.PhysicalProperty_binData.Substring(offset + end, 1)
        Convert.ToInt32(
            newSubstr 3 +
            newSubstr 2 + 
            newSubstr 1 +
            newSubstr 0)
    

提交回复
热议问题