I am trying to query black spaces in the database using LLBL Gen Pro. Some in the database, the value is a blank (not null). Can someone tell me how do I do it?
I have tried a few way, but none of them works correctly.
filter.AddWithAnd(RecipeFields.FeaturedItem % ""); //way 1
filter.AddWithAnd(RecipeFields.FeaturedItem == String.empty); // way 2
filter.AddWithAnd(RecipeFields.FeaturedItem == System.DBNull.value); // way 3