Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
from a in db.Test where  (a.Test.SecNo.Contains(CodeNo)) select a;


In this LINQ Query i am not able to add Contains. Can any one please solve this. SecNo DataType is Decimal.
Posted
Updated 1-Dec-11 15:21pm
v2
Comments
[no name] 1-Dec-11 21:21pm    
EDIT: added "pre" tag

1 solution

Decimal[^] does not have a Contains Method...
What should it contain? You can check if it is greater than (>) or fewer than (<) CodeNo (and quite a bit more), but not if it contains CodeNo...
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900