0
我々のデータモデルのようになります。この表のデータの多くはありません解析の文字列行の1つで
productName.productDescriptor.productMetadata
。そのデータを解析する「良い」方法はありますか?
Products where productDescriptor equals <MyDescriptor>
?あなたの文字列のコンポーネントは、セパレータ期間が含まれている場合、これは動作しません
var result = myRows.Where(x => x.myColumn.Contains("." + productDescriptor + "."));
: