I can use the dynamic model I want to add where condition in the "Tbl_ProductImg" table in this table I want only those record which has "isActive" value 1.
model.Product = db.Tbl_Product
.Include(t => t.Tbl_Product_Category)
.Include(y=>y.Tbl_Product_Dimensions)
.Include(I => I.Tbl_ProductImg)
.Where(x => x.Id == id && x.IsActive == 1 && x.Tbl_ProductImg.Any(y=>y.isActive==1))
.FirstOrDefault();
var result = Global.jsonConvert(model);