You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Filter is not working Barcodes property shown below entity. I'm using postresql and Barcodes column is text[] type. I can filter Barcodes with efcore _context.Products.where(w=>w.Barcodes.Contains("barcode")).ToList() linq query. There is no match like this type, any suggestion?
public class Product
{
public Guid Id { get; set; }
public int BranchId { get; set; }
public string ProductName { get; set; }
public string ProductNumber { get; set; }
public List<string> Barcodes { get; set; }
public decimal Price { get; set; }
public DateTime SourceCreateDate { get; set; }
public DateTime? SourceModifiedDate { get; set; }
public DateTime CreationTime { get; set; }
public string CreatorUser { get; set; }
public DateTime? LastModificationTime { get; set; }
public string LastModifierUser { get; set; }
}
The text was updated successfully, but these errors were encountered:
Filter is not working Barcodes property shown below entity. I'm using postresql and Barcodes column is text[] type. I can filter Barcodes with efcore
_context.Products.where(w=>w.Barcodes.Contains("barcode")).ToList()
linq query. There is no match like this type, any suggestion?The text was updated successfully, but these errors were encountered: