------解决方案-------------------- select * from tb left(状态列,1)=0 select * from tb left(状态列,1)=1
------解决方案-------------------- var q = from c in tb where c.状态列.StartWith("0") select c;
var q = from c in tb where c.状态列.StartWith("1") select c;
------解决方案--------------------